chensenlai 10988628a0 语音房项目初始化 5 yıl önce
..
index.js 10988628a0 语音房项目初始化 5 yıl önce
license 10988628a0 语音房项目初始化 5 yıl önce
package.json 10988628a0 语音房项目初始化 5 yıl önce
readme.md 10988628a0 语音房项目初始化 5 yıl önce

readme.md

is-finite Build Status

ES6 Number.isFinite() ponyfill

Ponyfill: A polyfill that doesn't overwrite the native method

Install

$ npm install --save is-finite

Usage

var numIsFinite = require('is-finite');

numIsFinite(4);
//=> true

numIsFinite(Infinity);
//=> false

License

MIT © Sindre Sorhus