Lobashov_Ivan_PIBD-21_IP/Lab2/node_modules/es-abstract/helpers/isNaN.js
2024-01-10 22:39:31 +04:00

6 lines
88 B
JavaScript

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