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