PromoCursed/node_modules/core-js/internals/not-a-nan.js

9 lines
215 B
JavaScript
Raw Normal View History

2024-08-20 23:25:37 +04:00
'use strict';
var $RangeError = RangeError;
module.exports = function (it) {
// eslint-disable-next-line no-self-compare -- NaN check
if (it === it) return it;
throw new $RangeError('NaN is not allowed');
};