Last active
February 4, 2019 02:01
-
-
Save beaucharman/fc2369f68ca1844437011011cd814047 to your computer and use it in GitHub Desktop.
A conditional higher order function
This file contains 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
unless(booleanExpression, () => { | |
// Then callback | |
}) |
This file contains 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
function unless(predicate, then) { | |
if (!predicate) { | |
then() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment