astock-agent/frontend/node_modules/es-abstract/helpers/isNaN.js
2026-04-07 20:51:00 +08:00

6 lines
88 B
JavaScript

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