summaryrefslogtreecommitdiff
path: root/src/node_modules/es-abstract/helpers/isNaN.js
blob: cb8631dca6c00e507c1146b8400c09c5369835c0 (plain)
1
2
3
4
5
'use strict';

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