function maskBit(x, y) { return (x & (1 << y)); } module.exports = maskBit;