source: trip-planner-front/node_modules/rxjs/_esm2015/internal/util/ObjectUnsubscribedError.js@ 6c1585f

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

initial commit

  • Property mode set to 100644
File size: 477 bytes
Line 
1const ObjectUnsubscribedErrorImpl = (() => {
2 function ObjectUnsubscribedErrorImpl() {
3 Error.call(this);
4 this.message = 'object unsubscribed';
5 this.name = 'ObjectUnsubscribedError';
6 return this;
7 }
8 ObjectUnsubscribedErrorImpl.prototype = Object.create(Error.prototype);
9 return ObjectUnsubscribedErrorImpl;
10})();
11export const ObjectUnsubscribedError = ObjectUnsubscribedErrorImpl;
12//# sourceMappingURL=ObjectUnsubscribedError.js.map
Note: See TracBrowser for help on using the repository browser.