635fa6a7df2e617e7398265b247a9c4d87dd08a1eaea8557e8c14d9dd8b128e5b6d0f1dffef371538095c61e0e55c265e9ffd06c0d4567364f01feb4361ed9 555 B

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