truuu
v0.1.0
Published
Generates a truth table from a JavaScript condition
Downloads
4
Readme
truuu
Generates a truth table from a JavaScript condition.
Install
npm i -g truuu
Usage
$ truuu 'isPizza && !hasPineapple'
╔══════════════════════════════════════════════════════════════╗
║ _____ ____ _ _ _ _ _ _ ║
║ |_ _| _ \| | | | | | | | | | ║
║ | | | |_) | | | | | | | | | | ║
║ | | | _ <| |_| | |_| | |_| | ║
║ |_| |_| \_\\___/ \___/ \___/ ║
║ ║
╟────────────────────┬──────────────┬──────────────────────────╢
║ isPizza │ hasPineapple │ isPizza && !hasPineapple ║
╟────────────────────┼──────────────┼──────────────────────────╢
║ false │ false │ false ║
╟────────────────────┼──────────────┼──────────────────────────╢
║ false │ true │ false ║
╟────────────────────┼──────────────┼──────────────────────────╢
║ true │ false │ true ║
╟────────────────────┼──────────────┼──────────────────────────╢
║ true │ true │ false ║
╚════════════════════╧══════════════╧══════════════════════════╝