JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 730095
  • Score
    100M100P100Q175737F
  • License Public Domain

Test if something is an integer (ES6 Polyfil)

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

Polyfill for ES6 isInteger.

Example

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

Installation

npm install is-integer