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

ArgumentOutOfRangeError.js 554B

12345678910111213
  1. /** PURE_IMPORTS_START PURE_IMPORTS_END */
  2. var ArgumentOutOfRangeErrorImpl = /*@__PURE__*/ (function () {
  3. function ArgumentOutOfRangeErrorImpl() {
  4. Error.call(this);
  5. this.message = 'argument out of range';
  6. this.name = 'ArgumentOutOfRangeError';
  7. return this;
  8. }
  9. ArgumentOutOfRangeErrorImpl.prototype = /*@__PURE__*/ Object.create(Error.prototype);
  10. return ArgumentOutOfRangeErrorImpl;
  11. })();
  12. export var ArgumentOutOfRangeError = ArgumentOutOfRangeErrorImpl;
  13. //# sourceMappingURL=ArgumentOutOfRangeError.js.map