uni-ticket-system/node_modules/core-js/internals/not-a-nan.js
2023-12-05 10:11:10 +08:00

8 lines
197 B
JavaScript

var $RangeError = RangeError;
module.exports = function (it) {
// eslint-disable-next-line no-self-compare -- NaN check
if (it === it) return it;
throw $RangeError('NaN is not allowed');
};