Skip to content

Commit d5b673c

Browse files
Update src/util.ts
Co-authored-by: Max Strübing <mxstrbng@gmail.com>
1 parent b71e20f commit d5b673c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export async function generateTmpFileName(): Promise<string> {
170170
* unhandled promise rejection which can cause process termination (in node).
171171
*/
172172
export const awaitLater = <T, P extends Promise<T>>(p: P): P => {
173-
p.catch(() => {});
173+
p.catch(() => {}); // tslint:disable-line:no-empty
174174
return p;
175175
};
176176

0 commit comments

Comments
 (0)