Version 1
[yaffs-website] / node_modules / core-js / modules / _to-length.js
1 // 7.1.15 ToLength
2 var toInteger = require('./_to-integer')
3   , min       = Math.min;
4 module.exports = function(it){
5   return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
6 };