sameValue.js 478 B

123456789101112131415161718
  1. 'use strict';
  2. var GetIntrinsic = require('get-intrinsic');
  3. var $TypeError = GetIntrinsic('%TypeError%');
  4. var Type = require('../Type');
  5. var BigIntEqual = require('./equal');
  6. // https://262.ecma-international.org/11.0/#sec-numeric-types-bigint-sameValue
  7. module.exports = function BigIntSameValue(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 BigIntEqual(x, y);
  12. };