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

isNaN.js « helpers « es-abstract « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4d4f95f316dd5a768439f9d272474c123749c37 (plain)
1
2
3
module.exports = Number.isNaN || function isNaN(a) {
	return a !== a;
};