amis-rpc-design/node_modules/core-js/internals/not-a-nan.js
2023-10-07 19:42:30 +08:00

9 lines
211 B
JavaScript

'use strict';
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');
};