tiny xor utility function
npm install component-xortiny xor utility function
Install with component(1):
$ component install component/xor
Or with node.js:
$ npm install component-xor
XOR two boolean values.
``js`
xor(true, true) // false
xor(true, false) // true
xor(false, true) // true
xor(false, false) // false
```
npm install
make test
MIT