bitwiseNOT.js 450 B

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