First commit

This commit is contained in:
2025-01-15 19:42:35 +01:00
committed by andreas
commit 6e1a5f9fe5
18475 changed files with 3309357 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
'use strict';
var GetIntrinsic = require('../GetIntrinsic');
var $TypeError = GetIntrinsic('%TypeError%');
var ToInt32 = require('./ToInt32');
var ToUint32 = require('./ToUint32');
// https://tc39.es/ecma262/2020/#sec-numberbitwiseop
module.exports = function NumberBitwiseOp(op, x, y) {
if (op !== '&' && op !== '|' && op !== '^') {
throw new $TypeError('Assertion failed: `op` must be `&`, `|`, or `^`');
}
var lnum = ToInt32(x);
var rnum = ToUint32(y);
if (op === '&') {
return lnum & rnum;
}
if (op === '|') {
return lnum | rnum;
}
return lnum ^ rnum;
};