"use strict"; module.exports = function generateMask(bits) { return (2n ** BigInt(bits)) - 1n; };