Files
2018-10-27 03:51:47 -05:00

4 lines
199 B
JavaScript
Vendored

var $isNaN = Number.isNaN || function (a) { return a !== a; };
module.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; };