Files
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03: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');
};