|
|
hace 1 año | |
|---|---|---|
| .. | ||
| examples | hace 1 año | |
| .npmignore | hace 1 año | |
| LICENCE | hace 1 año | |
| README.md | hace 1 año | |
| index.js | hace 1 año | |
| package.json | hace 1 año | |
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