Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
477 bytes
|
Line | |
---|
1 | const 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 | })();
|
---|
11 | export const ObjectUnsubscribedError = ObjectUnsubscribedErrorImpl;
|
---|
12 | //# sourceMappingURL=ObjectUnsubscribedError.js.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.