Skip to content

Instantly share code, notes, and snippets.

@caseymorrisus
Created October 10, 2018 22:49
Show Gist options
  • Save caseymorrisus/f8a103f06b7f1c8de4275f0e90eae243 to your computer and use it in GitHub Desktop.
Save caseymorrisus/f8a103f06b7f1c8de4275f0e90eae243 to your computer and use it in GitHub Desktop.
Functional JS -- Not (!)
const not = (x) => cond(FALSE)(TRUE)(x)
not(FALSE) // => TRUE
not(TRUE) // => FALSE
cond('Foo')('Bar')(not(TRUE)) // => 'Bar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment