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: cb8631dca6c00e507c1146b8400c09c5369835c0 (plain)
1
2
3
4
5
'use strict';

module.exports = Number.isNaN || function isNaN(a) {
	return a !== a;
};