Skip to content

Instantly share code, notes, and snippets.

@modemlooper
Created October 30, 2022 15:53
Show Gist options
  • Save modemlooper/a9da86004eea17448b4f5f2b43ad56ab to your computer and use it in GitHub Desktop.
Save modemlooper/a9da86004eea17448b4f5f2b43ad56ab to your computer and use it in GitHub Desktop.
Fake async await
async function fakeasync() {
const waitFor = delay => new Promise(resolve => setTimeout(resolve, delay));
await waitFor(3000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment