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

index.js « number-is-nan « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79be4b9cb8c3bceb6eb08cfca105221d8cee0db1 (plain)
1
2
3
4
'use strict';
module.exports = Number.isNaN || function (x) {
	return x !== x;
};