aswi2020vldc-gitlab/templetes/node_modules/es-abstract/helpers/isFinite.js @ 2aa583fe
1 |
'use strict'; |
---|---|
2 |
|
3 |
var $isNaN = Number.isNaN || function (a) { return a !== a; }; |
4 |
|
5 |
module.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; }; |