remiD45's picture
push chat
8990a66
raw
history blame contribute delete
121 Bytes
'use strict';
/** @type {import('./isNaN')} */
module.exports = Number.isNaN || function isNaN(a) {
return a !== a;
};