aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/number/is-nan/shim.js
blob: b5730d1d644b7bb192d44b70078778515f0c4d85 (plain)
1
2
3
4
5
6
"use strict";

module.exports = function (value) {
	// eslint-disable-next-line no-self-compare
	return value !== value;
};