|
|
před 1 rokem | |
|---|---|---|
| .. | ||
| examples | před 1 rokem | |
| .npmignore | před 1 rokem | |
| LICENCE | před 1 rokem | |
| README.md | před 1 rokem | |
| index.js | před 1 rokem | |
| package.json | před 1 rokem | |
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