summaryrefslogtreecommitdiff
path: root/node_modules/is-finite/index.js
blob: 421dd391db309ffa0de2787cfd1e547973a7679c (about) (plain)
1
2
3
4
5
'use strict';

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