mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 07:38:25 -04:00
7 lines
121 B
JavaScript
7 lines
121 B
JavaScript
'use strict';
|
|
|
|
/** @type {import('./isNaN')} */
|
|
module.exports = Number.isNaN || function isNaN(a) {
|
|
return a !== a;
|
|
};
|