Returns the negation of a function
npm install not
``var not = require("not") , truth = function () { return true } , lies = function () { return false }
var not = require("not") , truth = function () { return true } , lies = function () { return false }
// false trueconsole.log(not(truth)(), not(lies)())`
npm install not`
- Raynos