UNPKG

215 BJavaScriptView Raw
1'use strict';
2var $RangeError = RangeError;
3
4module.exports = function (it) {
5 // eslint-disable-next-line no-self-compare -- NaN check
6 if (it === it) return it;
7 throw new $RangeError('NaN is not allowed');
8};