source: trip-planner-front/node_modules/rxjs/internal/util/ArgumentOutOfRangeError.js@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 555 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var 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})();
13exports.ArgumentOutOfRangeError = ArgumentOutOfRangeErrorImpl;
14//# sourceMappingURL=ArgumentOutOfRangeError.js.map
Note: See TracBrowser for help on using the repository browser.