|
|
пре 1 година | |
|---|---|---|
| .. | ||
| examples | пре 1 година | |
| .npmignore | пре 1 година | |
| LICENCE | пре 1 година | |
| README.md | пре 1 година | |
| index.js | пре 1 година | |
| package.json | пре 1 година | |
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