mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
15 lines
474 B
JavaScript
15 lines
474 B
JavaScript
|
'use strict';
|
||
|
/* eslint-disable es/no-bigint -- safe */
|
||
|
var $ = require('../internals/export');
|
||
|
var NumericRangeIterator = require('../internals/numeric-range-iterator');
|
||
|
|
||
|
// `BigInt.range` method
|
||
|
// https://github.com/tc39/proposal-Number.range
|
||
|
if (typeof BigInt == 'function') {
|
||
|
$({ target: 'BigInt', stat: true }, {
|
||
|
range: function range(start, end, option) {
|
||
|
return new NumericRangeIterator(start, end, option, 'bigint', BigInt(0), BigInt(1));
|
||
|
}
|
||
|
});
|
||
|
}
|