/** * @module 1-liners/bitOr * * @description * * Same as `a | b`. * * @example * * const bitOr = require('1-liners/bitOr'); * * bitOr(0, 1); // => 1 * bitOr(1, 1); // => 1 * */ export default (x, y) => x | y;