Files
feedstr.live/node_modules/core-js-pure/internals/not-a-nan.js
T
2023-11-25 18:12:47 -05:00

9 lines
215 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 new $RangeError('NaN is not allowed');
};