npm install bitwise-or
Bitwise OR (|) as a function. Just in case you ever need to pass the operation
to something else as a function.
`` javascript
var bitwiseOR = require('bitwise-or');
bitwiseOR(14, 9);
// => 15
`
` bash`
$ npm install bitwise-or
` javascript`
var bitwiseOR = require('bitwise-or');
Performs the OR operation on bits x and y`.