mirror of
https://github.com/sern-handler/website
synced 2026-06-17 13:22:23 +00:00
10 lines
136 B
JavaScript
10 lines
136 B
JavaScript
module.exports = not
|
|
|
|
function not(f) {
|
|
return negation
|
|
|
|
function negation() {
|
|
return !f.apply(this, arguments)
|
|
}
|
|
}
|