fb15493607aa29245ef267e24f39dfc9dd47401a4f500d34bc1bd6e2b8e6678022c8732efc530974e77b96c74217f24880d0c40085fac0048f48e00890c7db 477 B

123456789101112
  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