Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit f269fad

Browse files
♻️ Remove nullish coalescing operator
1 parent daf4ffb commit f269fad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const run = async () => {
66
debug(`Waiting ${ms} milliseconds ...`);
77

88
debug(new Date().toTimeString());
9-
await wait(parseInt(ms, 10) ?? 1);
9+
await wait(parseInt(ms, 10));
1010
debug(new Date().toTimeString());
1111

1212
setOutput("time", new Date().toTimeString());

0 commit comments

Comments
 (0)