Skip to content

Instantly share code, notes, and snippets.

@b4n92uid
Created August 26, 2020 12:07
Show Gist options
  • Save b4n92uid/819aba5465e9d9cb2829f5183007bb28 to your computer and use it in GitHub Desktop.
Save b4n92uid/819aba5465e9d9cb2829f5183007bb28 to your computer and use it in GitHub Desktop.
Promised sleep
export default function sleep(ms: number): Promise<void> {
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