Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / src / internal / util / hostReportError.ts
1 /**
2  * Throws an error on another job so that it's picked up by the runtime's
3  * uncaught error handling mechanism.
4  * @param err the error to throw
5  */
6 export function hostReportError(err: any) {
7   setTimeout(() => { throw err; }, 0);
8 }