6fbb3bb51ba3267235859bef11fe76175c220dbb5651e536443af677b0ed61b04bbed053d4f4d368305daf24dc8487f05930c47093eb6afbb1bf66fd8b18c8 479 B

123456789101112
  1. const ArgumentOutOfRangeErrorImpl = (() => {
  2. function ArgumentOutOfRangeErrorImpl() {
  3. Error.call(this);
  4. this.message = 'argument out of range';
  5. this.name = 'ArgumentOutOfRangeError';
  6. return this;
  7. }
  8. ArgumentOutOfRangeErrorImpl.prototype = Object.create(Error.prototype);
  9. return ArgumentOutOfRangeErrorImpl;
  10. })();
  11. export const ArgumentOutOfRangeError = ArgumentOutOfRangeErrorImpl;
  12. //# sourceMappingURL=ArgumentOutOfRangeError.js.map