Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

isinteger

Sahadar17MIT1.0.1

Dependency free (ES6)Number.isInteger method implementation

Number, number, is-integer, isinteger, integer, int

readme

isInteger

isInteger implementation based on ES6 Number.isInteger specification

Build Status Dependency Status License

NPM isinteger link

Installation

  • download from Github
  • npm: npm install isinteger
  • bower: bower install isinteger

Description

If the target value is an integer, return true, otherwise return false. If the value is NaN or infinite, return false.

Examples

isInteger(0.1);     // false
isInteger(1);       // true
isInteger(Math.PI); // false
isInteger(-100000); // true
isInteger(NaN);     // false
isInteger(0);       // true
isInteger("10");    // false

For more working examples:

Check out tests file

License

MIT

changelog

Changelog

  • v1.0.1
    • Doc fix
  • v1.0.0
    • Tests passing
  • v0.0.1
    • Initial commit