Skip to content

Instantly share code, notes, and snippets.

@wozozo
Last active August 1, 2020 13:02
Show Gist options
  • Save wozozo/cbfe75fa435af84d59c1846bcfb93e94 to your computer and use it in GitHub Desktop.
Save wozozo/cbfe75fa435af84d59c1846bcfb93e94 to your computer and use it in GitHub Desktop.
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export function wait(ms: number): Promise<any> {
return new Promise((resolve) => {
setTimeout(() => {
resolve();
}, ms);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment