mirror of
https://github.com/sern-handler/website
synced 2026-06-28 02:32:23 +00:00
25 lines
307 B
Markdown
25 lines
307 B
Markdown
# not
|
|
|
|
Returns the negation of a function
|
|
|
|
## Example
|
|
|
|
```
|
|
var not = require("not")
|
|
, truth = function () { return true }
|
|
, lies = function () { return false }
|
|
|
|
// false true
|
|
console.log(not(truth)(), not(lies)())
|
|
```
|
|
|
|
## Installation
|
|
|
|
`npm install not`
|
|
|
|
## Contributors
|
|
|
|
- Raynos
|
|
|
|
## MIT Licenced
|