mirror of
https://github.com/sern-handler/website
synced 2026-06-17 13:22:23 +00:00
7 lines
162 B
JavaScript
7 lines
162 B
JavaScript
var not = require("..")
|
|
, truth = function () { return true }
|
|
, lies = function () { return false }
|
|
|
|
// false true
|
|
console.log(not(truth)(), not(lies)())
|