/** * @module 1-liners/bitOr * * @description * * Same as `a | b`. * * @example * * const bitOr = require('1-liners/bitOr'); * * bitOr(0, 1); // => 1 * bitOr(1, 1); // => 1 * */ "use strict"; exports.__esModule = true; exports["default"] = function (x, y) { return x | y; }; module.exports = exports["default"];