Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

to-length-x

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

to-length-x

Shim for ToLength.

  • 4.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
221
decreased by-76.26%
Maintainers
1
Weekly downloads
 
Created
Source

Travis status Dependency status devDependency status npm version

to-length-x

Shim for ToLength.

See: 7.1.15 ToLength ( argument )
Version: 3.0.0
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750

to-length-x.toLength

Reference to toLength2018.

Kind: static property of to-length-x

to-length-x.toLength2016number

Converts value to an integer suitable for use as the length of an array-like object. (ES2016)

Kind: static property of to-length-x
Returns: number - Returns the converted integer.

ParamTypeDescription
value*The value to convert.

Example

var toLength = require('to-length-x').toLength2016;
toLength(3); // 3
toLength(Number.MIN_VALUE); // 0
toLength(Infinity); // Number.MAX_SAFE_INTEGER
toLength('3'); // 3

to-length-x.toLength2018number

Converts value to an integer suitable for use as the length of an array-like object. (ES2018)

Kind: static property of to-length-x
Returns: number - Returns the converted integer.

ParamTypeDescription
value*The value to convert.

Example

var toLength = require('to-length-x').toLength2018;
toLength(3); // 3
toLength(Number.MIN_VALUE); // 0
toLength(Infinity); // Number.MAX_SAFE_INTEGER
toLength('3'); // 3

Keywords

FAQs

Package last updated on 14 Jul 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc