source: imaps-frontend/node_modules/core-js/modules/esnext.bigint.range.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 521 bytes
Line 
1'use strict';
2/* eslint-disable es/no-bigint -- safe */
3var $ = require('../internals/export');
4var NumericRangeIterator = require('../internals/numeric-range-iterator');
5
6// `BigInt.range` method
7// https://github.com/tc39/proposal-Number.range
8// TODO: Remove from `core-js@4`
9if (typeof BigInt == 'function') {
10 $({ target: 'BigInt', stat: true, forced: true }, {
11 range: function range(start, end, option) {
12 return new NumericRangeIterator(start, end, option, 'bigint', BigInt(0), BigInt(1));
13 }
14 });
15}
Note: See TracBrowser for help on using the repository browser.