frontend/.pnpm-store/v3/files/03/6fbb3bb51ba3267235859bef11fe76175c220dbb5651e536443af677b0ed61b04bbed053d4f4d368305daf24dc8487f05930c47093eb6afbb1bf66fd8b18c8

12 lines
479 B
Plaintext

const ArgumentOutOfRangeErrorImpl = (() => {
function ArgumentOutOfRangeErrorImpl() {
Error.call(this);
this.message = 'argument out of range';
this.name = 'ArgumentOutOfRangeError';
return this;
}
ArgumentOutOfRangeErrorImpl.prototype = Object.create(Error.prototype);
return ArgumentOutOfRangeErrorImpl;
})();
export const ArgumentOutOfRangeError = ArgumentOutOfRangeErrorImpl;
//# sourceMappingURL=ArgumentOutOfRangeError.js.map