Created
April 29, 2022 21:59
-
-
Save n8jadams/56eabb5588e43472b3f8acadf819754e to your computer and use it in GitHub Desktop.
not(someFunction(someArgs))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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