You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
404 B
15 lines
404 B
![]()
1 week ago
|
'use strict';
|
||
|
|
||
|
var MAX_SAFE_INTEGER = require('math-intrinsics/constants/maxSafeInteger');
|
||
|
|
||
|
var ToInteger = require('./ToInteger');
|
||
|
|
||
|
// https://262.ecma-international.org/6.0/#sec-tolength
|
||
|
|
||
|
module.exports = function ToLength(argument) {
|
||
|
var len = ToInteger(argument);
|
||
|
if (len <= 0) { return 0; } // includes converting -0 to +0
|
||
|
if (len > MAX_SAFE_INTEGER) { return MAX_SAFE_INTEGER; }
|
||
|
return len;
|
||
|
};
|