source: trip-planner-front/node_modules/rxjs/internal/util/ObjectUnsubscribedError.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: 553 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var ObjectUnsubscribedErrorImpl = (function () {
4 function ObjectUnsubscribedErrorImpl() {
5 Error.call(this);
6 this.message = 'object unsubscribed';
7 this.name = 'ObjectUnsubscribedError';
8 return this;
9 }
10 ObjectUnsubscribedErrorImpl.prototype = Object.create(Error.prototype);
11 return ObjectUnsubscribedErrorImpl;
12})();
13exports.ObjectUnsubscribedError = ObjectUnsubscribedErrorImpl;
14//# sourceMappingURL=ObjectUnsubscribedError.js.map
Note: See TracBrowser for help on using the repository browser.