lolite.nor
v1.1.15
Published
Returns the negation of the result of `or(a, b)`, where the `a` and `b` passed into `or` are the same `a` and `b` the user provides for `nor`. ```javascript const lolite = require("lolite.nor")
Readme
nor(a, b)
Returns the negation of the result of or(a, b), where the a and b passed into or are the same a and b the user provides for nor.
const lolite = require("lolite.nor")
console.log(nor(false, false)) // true
console.log(nor(true, false)) // false
console.log(nor(false, true)) // false
console.log(nor(true, true)) // false