summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/es-abstract/helpers/isNaN.js
blob: e4d4f95f316dd5a768439f9d272474c123749c37 (plain)
1
2
3
module.exports = Number.isNaN || function isNaN(a) {
	return a !== a;
};