Skip to content

Instantly share code, notes, and snippets.

@n8jadams
Created April 29, 2022 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save n8jadams/56eabb5588e43472b3f8acadf819754e to your computer and use it in GitHub Desktop.
Save n8jadams/56eabb5588e43472b3f8acadf819754e to your computer and use it in GitHub Desktop.
not(someFunction(someArgs))
const not = fn => (...args) => !fn.apply(null, args)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment