isNaN.js 73 Bytes
Newer Older
liang ce committed
1 2 3
module.exports = Number.isNaN || function isNaN(a) {
	return a !== a;
};