web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
501 B

  1. 'use strict';
  2. var GetIntrinsic = require('get-intrinsic');
  3. var $TypeError = GetIntrinsic('%TypeError%');
  4. var BigIntBitwiseOp = require('../BigIntBitwiseOp');
  5. var Type = require('../Type');
  6. // https://262.ecma-international.org/11.0/#sec-numeric-types-bigint-bitwiseOR
  7. module.exports = function BigIntBitwiseOR(x, y) {
  8. if (Type(x) !== 'BigInt' || Type(y) !== 'BigInt') {
  9. throw new $TypeError('Assertion failed: `x` and `y` arguments must be BigInts');
  10. }
  11. return BigIntBitwiseOp('|', x, y);
  12. };