management/front/dkha-web-sz-main/node_modules/es-abstract/helpers/isNaN.js

6 lines
88 B
JavaScript
Raw Normal View History

2023-12-28 23:41:32 +08:00
'use strict';
2023-12-18 13:12:25 +08:00
module.exports = Number.isNaN || function isNaN(a) {
return a !== a;
};