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.
14 lines
435 B
14 lines
435 B
'use strict'; |
|
|
|
var MAX_SAFE_INTEGER = require('math-intrinsics/constants/maxSafeInteger'); |
|
|
|
var ToIntegerOrInfinity = require('./ToIntegerOrInfinity'); |
|
|
|
// https://262.ecma-international.org/12.0/#sec-tolength |
|
|
|
module.exports = function ToLength(argument) { |
|
var len = ToIntegerOrInfinity(argument); |
|
if (len <= 0) { return 0; } // includes converting -0 to +0 |
|
if (len > MAX_SAFE_INTEGER) { return MAX_SAFE_INTEGER; } |
|
return len; |
|
};
|
|
|