Your IP : 216.73.216.79


Current Path : /var/www/html/jpp/node_modules/is-finite/
Upload File :
Current File : /var/www/html/jpp/node_modules/is-finite/index.js

'use strict';

module.exports = Number.isFinite || function (value) {
	return !(typeof value !== 'number' || value !== value || value === Infinity || value === -Infinity);
};