| Current Path : /var/www/html/mswp/node_modules/is-finite/ |
| Current File : /var/www/html/mswp/node_modules/is-finite/index.js |
'use strict';
module.exports = Number.isFinite || function (value) {
return !(typeof value !== 'number' || value !== value || value === Infinity || value === -Infinity);
};