hrms-manual/node_modules/core-js/internals/not-a-nan.js
2023-09-06 14:51:44 +07:00

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