Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

ObjectUnsubscribedError.js 552B

12345678910111213
  1. /** PURE_IMPORTS_START PURE_IMPORTS_END */
  2. var ObjectUnsubscribedErrorImpl = /*@__PURE__*/ (function () {
  3. function ObjectUnsubscribedErrorImpl() {
  4. Error.call(this);
  5. this.message = 'object unsubscribed';
  6. this.name = 'ObjectUnsubscribedError';
  7. return this;
  8. }
  9. ObjectUnsubscribedErrorImpl.prototype = /*@__PURE__*/ Object.create(Error.prototype);
  10. return ObjectUnsubscribedErrorImpl;
  11. })();
  12. export var ObjectUnsubscribedError = ObjectUnsubscribedErrorImpl;
  13. //# sourceMappingURL=ObjectUnsubscribedError.js.map