|
|
il y a 1 an | |
|---|---|---|
| .. | ||
| examples | il y a 1 an | |
| .npmignore | il y a 1 an | |
| LICENCE | il y a 1 an | |
| README.md | il y a 1 an | |
| index.js | il y a 1 an | |
| package.json | il y a 1 an | |
Returns the negation of a function
var not = require("not")
, truth = function () { return true }
, lies = function () { return false }
// false true
console.log(not(truth)(), not(lies)())
npm install not