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.
12 lines
332 B
12 lines
332 B
'use strict'; |
|
|
|
var MAX_SAFE_INTEGER = require('../helpers/maxSafeInteger'); |
|
|
|
var ToInteger = require('./ToInteger'); |
|
|
|
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; |
|
};
|
|
|