backoffice/node_modules/core-js/modules/_to-length.js

6 lines
217 B
JavaScript
Raw Normal View History

2020-02-06 10:09:39 +00:00
// 7.1.15 ToLength
var toInteger = require('./_to-integer')
, min = Math.min;
module.exports = function(it){
return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
};