blob: e36475cf878ca6beda4dfd1cd3881759b72270c6 [file] [log] [blame] [edit]
'use strict';
/** @type {import('./isNaN')} */
module.exports = Number.isNaN || function isNaN(a) {
return a !== a;
};