Socket
Socket
Sign inDemoInstall

to-integer-x

Package Overview
Dependencies
33
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    to-integer-x

ToInteger converts 'argument' to an integral numeric value.


Version published
Maintainers
1
Install size
1.17 MB
Created

Readme

Source

Travis status Dependency status devDependency status npm version

to-integer-x

ToInteger converts 'argument' to an integral numeric value.

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

to-integer-x.toInteger

Reference to toInteger2018.

Kind: static property of to-integer-x

to-integer-x.toInteger2016number

Converts value to an integer. (ES2016)

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

ParamTypeDescription
value*The value to convert.

Example

var toInteger = require('to-integer-x').toInteger2016;
toInteger(3); // 3
toInteger(Number.MIN_VALUE); // 0
toInteger(Infinity); // 1.7976931348623157e+308
toInteger('3'); // 3

to-integer-x.toInteger2018number

Converts value to an integer. (ES2018)

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

ParamTypeDescription
value*The value to convert.

Example

var toInteger = require('to-integer-x').toInteger2018;
toInteger(3); // 3
toInteger(Number.MIN_VALUE); // 0
toInteger(Infinity); // 1.7976931348623157e+308
toInteger('3'); // 3

Keywords

FAQs

Last updated on 18 Oct 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc