1 2 3 4 5 6 7 8 9 10 11 12 13 | 1× 1846× 571× 30× 378× 578× 1× | var Boole = {
zero: false,
one: true,
contains: (a) => (typeof a === 'boolean'),
addition: (a, b) => (a || b),
equality: (a, b) => (a === b),
negation: (a) => (a),
multiplication: (a, b) => (a && b),
inversion: (a) => (a)
}
module.exports = Boole
|