FLUJOS/VISUALIZACION/node_modules/es-abstract/helpers/isNaN.js
2025-11-07 00:06:12 +01:00

5 lines
88 B
JavaScript
Executable file

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