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

ObjectUnsubscribedError.js 553B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var 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. })();
  13. exports.ObjectUnsubscribedError = ObjectUnsubscribedErrorImpl;
  14. //# sourceMappingURL=ObjectUnsubscribedError.js.map