Urara-Blog/node_modules/.pnpm-store/v3/files/71/aacb285bed6a9dbf348e3650a2f86169e2e077cae675594c0824c688dc52cfdabef67a156b71c5724ccc153eb73c2e111ceb266c0f73ca52f89329eda69f1f
2022-08-14 01:14:53 +08:00

29 lines
757 B
Text

'use strict';
var GetIntrinsic = require('get-intrinsic');
var $TypeError = GetIntrinsic('%TypeError%');
var ToInt32 = require('./ToInt32');
var ToUint32 = require('./ToUint32');
var Type = require('./Type');
// https://262.ecma-international.org/11.0/#sec-numberbitwiseop
module.exports = function NumberBitwiseOp(op, x, y) {
if (op !== '&' && op !== '|' && op !== '^') {
throw new $TypeError('Assertion failed: `op` must be `&`, `|`, or `^`');
}
if (Type(x) !== 'Number' || Type(y) !== 'Number') {
throw new $TypeError('Assertion failed: `x` and `y` arguments must be Numbers');
}
var lnum = ToInt32(x);
var rnum = ToUint32(y);
if (op === '&') {
return lnum & rnum;
}
if (op === '|') {
return lnum | rnum;
}
return lnum ^ rnum;
};