component-xor

tiny xor utility function

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
component-xor
600.0.49 years ago10 years agoMinified + gzip package size for component-xor in KB

Readme

xor
tiny xor utility function

Installation

Install with component(1):
$ component install component/xor
Or with node.js:
$ npm install component-xor

API

xor(bool, bool)

XOR two boolean values.
xor(true, true) // false
xor(true, false) // true
xor(false, true) // true
xor(false, false) // false

Test

npm install
make test

License

MIT