esnext.bigint.range.js 521 B

123456789101112131415
  1. 'use strict';
  2. /* eslint-disable es/no-bigint -- safe */
  3. var $ = require('../internals/export');
  4. var NumericRangeIterator = require('../internals/numeric-range-iterator');
  5. // `BigInt.range` method
  6. // https://github.com/tc39/proposal-Number.range
  7. // TODO: Remove from `core-js@4`
  8. if (typeof BigInt == 'function') {
  9. $({ target: 'BigInt', stat: true, forced: true }, {
  10. range: function range(start, end, option) {
  11. return new NumericRangeIterator(start, end, option, 'bigint', BigInt(0), BigInt(1));
  12. }
  13. });
  14. }