discord-baymax-bot/node_modules/is-finite/index.js
2017-03-23 23:52:08 -05:00

7 lines
212 B
JavaScript

'use strict';
var numberIsNan = require('number-is-nan');
module.exports = Number.isFinite || function (val) {
return !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity);
};