JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 717160
  • Score
    100M100P100Q179622F
  • License WTFPL OR ISC

ES2015 (ES6) Number.isInteger polyfill

Package Exports

  • is-integer

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-integer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

is-integer build status

ES2015 (ES6) Number.isInteger polyfill implemented in ES3.

Example

var isInteger = require("is-integer");
isInteger("hello") // -> false
isInteger(4) // -> true
isInteger(4.0) // -> true
isInteger(4.1) // -> false

API

var isInteger = require("is-integer")

Determines whether the provided value is an integer.

See Number.isInteger.

Install

npm install is-integer