isinteger

1.0.1 • Public • Published

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

Package Sidebar

Install

npm i isinteger

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • sahadar