asd/asd-wx/node_modules/core-js/internals/not-a-nan.js
愉快的大福 340a467ba1 init
2024-11-21 11:32:11 +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');
};