astro-ghostcms/.pnpm-store/v3/files/d7/a31945910796085a9bc34080209...

15 lines
426 B
Plaintext
Raw Normal View History

2024-02-14 19:45:06 +00:00
'use strict';
var $TypeError = require('es-errors/type');
var NumberBitwiseOp = require('../NumberBitwiseOp');
// https://262.ecma-international.org/11.0/#sec-numeric-types-number-bitwiseAND
module.exports = function NumberBitwiseAND(x, y) {
if (typeof x !== 'number' || typeof y !== 'number') {
throw new $TypeError('Assertion failed: `x` and `y` arguments must be Numbers');
}
return NumberBitwiseOp('&', x, y);
};