JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 17
  • Score
    100M100P100Q46084F
  • License ISC

Check if an input is numeric, and within a given bound

Package Exports

  • is-bounded-number

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-bounded-number) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

is-bounded-number

npm versionBuild status

Checks that a number is numeric, finite, and within a specific range (default is +/- 1e15). Find module on npm and code repo with examples on GitHub.

API

var ibn = require('is-bounded-number');
ibn(input);          // Returns boolean. Checks input numeric and bounded by +/- 1e15
ibn(input, bound);   // Returns boolean

Use npm i is-bounded-number to install. For full examples see GitHub examples directory.