Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

ArgumentOutOfRangeError.js 479B

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