Files
website/node_modules/not/index.js
2024-05-06 17:15:30 -04:00

10 lines
136 B
JavaScript

module.exports = not
function not(f) {
return negation
function negation() {
return !f.apply(this, arguments)
}
}