Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / _esm2015 / internal / util / UnsubscriptionError.js
1 const UnsubscriptionErrorImpl = (() => {
2     function UnsubscriptionErrorImpl(errors) {
3         Error.call(this);
4         this.message = errors ?
5             `${errors.length} errors occurred during unsubscription:
6 ${errors.map((err, i) => `${i + 1}) ${err.toString()}`).join('\n  ')}` : '';
7         this.name = 'UnsubscriptionError';
8         this.errors = errors;
9         return this;
10     }
11     UnsubscriptionErrorImpl.prototype = Object.create(Error.prototype);
12     return UnsubscriptionErrorImpl;
13 })();
14 export const UnsubscriptionError = UnsubscriptionErrorImpl;
15 //# sourceMappingURL=UnsubscriptionError.js.map