All Projects → sindresorhus → is-safe-integer

sindresorhus / is-safe-integer

Licence: MIT License
ES2015 Number.isSafeInteger() ponyfill

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to is-safe-integer

max-safe-integer
ES2015 Number.MAX_SAFE_INTEGER ponyfill
Stars: ✭ 15 (-6.25%)
Mutual labels:  deprecated, number, ponyfill
Os Homedir
[DEPRECATED] Node.js `os.homedir()` ponyfill
Stars: ✭ 55 (+243.75%)
Mutual labels:  deprecated, ponyfill
Os Tmpdir
[DEPRECATED] Node.js os.tmpdir() ponyfill
Stars: ✭ 31 (+93.75%)
Mutual labels:  deprecated, ponyfill
Gulp Traceur
Traceur is a JavaScript.next to JavaScript-of-today compiler
Stars: ✭ 172 (+975%)
Mutual labels:  npm-package, deprecated
Grunt Myth
Myth - Postprocessor that polyfills CSS
Stars: ✭ 70 (+337.5%)
Mutual labels:  npm-package, deprecated
npmlint
[DEPRECATED] Lint your npm package
Stars: ✭ 57 (+256.25%)
Mutual labels:  npm-package, deprecated
ton-client-rs
TON Labs SDK Client Library for Rust
Stars: ✭ 15 (-6.25%)
Mutual labels:  deprecated
Nodorithm
NPM package for algorithms.
Stars: ✭ 22 (+37.5%)
Mutual labels:  npm-package
code-frame
Minimal Code Frame like babel-code-frame, but smaller
Stars: ✭ 22 (+37.5%)
Mutual labels:  npm-package
rql-scala
RethinkDB Scala Driver
Stars: ✭ 13 (-18.75%)
Mutual labels:  deprecated
rxjs-ninja
RxJS Operators for handling Observable strings, numbers, booleans and more
Stars: ✭ 68 (+325%)
Mutual labels:  number
node-bandwidth
NodeJS Client library for Bandwidth Voice and Messaging APIs
Stars: ✭ 38 (+137.5%)
Mutual labels:  deprecated
geoservices-js
Deprecated - please consider using @esri/arcgis-rest-js
Stars: ✭ 53 (+231.25%)
Mutual labels:  deprecated
form-data
Spec-compliant FormData implementation for Node.js
Stars: ✭ 73 (+356.25%)
Mutual labels:  ponyfill
next-gen-ui
www.npmjs.com/package/next-gen-ui
Stars: ✭ 24 (+50%)
Mutual labels:  npm-package
nuxt-mail
Adds email sending capability to a Nuxt.js app. Adds a server route, an injected variable, and uses nodemailer to send emails.
Stars: ✭ 62 (+287.5%)
Mutual labels:  npm-package
AASecondaryScreen
[Deprecated] · Approachable implementation of iOS AirPlay-Mirroring using Swift.
Stars: ✭ 40 (+150%)
Mutual labels:  deprecated
Sphero-AR-SDK
🚫 DEPRECATED: Sphero's augmented reality SDK
Stars: ✭ 46 (+187.5%)
Mutual labels:  deprecated
nord
An unofficial NordVPN client [DEPRECATED]
Stars: ✭ 25 (+56.25%)
Mutual labels:  deprecated
shake
緊急地震速報プログラム – Desktop Earthquake Warnings
Stars: ✭ 31 (+93.75%)
Mutual labels:  deprecated

Deprecated

This package is no longer relevant as ES2015 support is widespread.


is-safe-integer Build Status

ES2015 Number.isSafeInteger() ponyfill

Install

$ npm install --save is-safe-integer

Usage

var isSafeInteger = require('is-safe-integer');

isSafeInteger(3);
//=> true

isSafeInteger(100719925474099143523412);
//=> false

isSafeInteger(Infinity);
//=> false

Related

License

MIT © Sindre Sorhus

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].