We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b71e20f commit d5b673cCopy full SHA for d5b673c
src/util.ts
@@ -170,7 +170,7 @@ export async function generateTmpFileName(): Promise<string> {
170
* unhandled promise rejection which can cause process termination (in node).
171
*/
172
export const awaitLater = <T, P extends Promise<T>>(p: P): P => {
173
- p.catch(() => {});
+ p.catch(() => {}); // tslint:disable-line:no-empty
174
return p;
175
};
176
0 commit comments