Skip to content

Instantly share code, notes, and snippets.

@rahulsmehta
Created July 30, 2020 18:54
Show Gist options
  • Save rahulsmehta/36f9f44355cac55b9608afef2b71630c to your computer and use it in GitHub Desktop.
Save rahulsmehta/36f9f44355cac55b9608afef2b71630c to your computer and use it in GitHub Desktop.
wait
private async wait<T>(ms, value: T): Promise<T> {
return new Promise(resolve => setTimeout(resolve, ms, value));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment