auth-api/tests/node_modules/es-abstract/helpers/isNaN.js

6 lines
88 B
JavaScript
Raw Normal View History

2021-06-23 22:30:45 +02:00
'use strict';
module.exports = Number.isNaN || function isNaN(a) {
return a !== a;
};