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

ArgumentOutOfRangeError.js 555B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var ArgumentOutOfRangeErrorImpl = (function () {
  4. function ArgumentOutOfRangeErrorImpl() {
  5. Error.call(this);
  6. this.message = 'argument out of range';
  7. this.name = 'ArgumentOutOfRangeError';
  8. return this;
  9. }
  10. ArgumentOutOfRangeErrorImpl.prototype = Object.create(Error.prototype);
  11. return ArgumentOutOfRangeErrorImpl;
  12. })();
  13. exports.ArgumentOutOfRangeError = ArgumentOutOfRangeErrorImpl;
  14. //# sourceMappingURL=ArgumentOutOfRangeError.js.map