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 e290fa8 commit 9597ad8Copy full SHA for 9597ad8
1 file changed
packages/runtime/src/local-helpers/sleep.ts
@@ -1,5 +1,5 @@
1
export function sleep(timeout: number) {
2
return new Promise<void>((resolve) => {
3
setTimeout(() => resolve(), timeout);
4
- })
+ });
5
}
0 commit comments