Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « is-finite « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 421dd391db309ffa0de2787cfd1e547973a7679c (plain)
1
2
3
4
5
'use strict';

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