Skip to content

Instantly share code, notes, and snippets.

@rusco
Created October 23, 2019 09:57
Show Gist options
  • Save rusco/4305554e12146aac820472583f2c8ccd to your computer and use it in GitHub Desktop.
Save rusco/4305554e12146aac820472583f2c8ccd to your computer and use it in GitHub Desktop.
Timeout Gist
const pause = ms => new Promise(resolve => setTimeout(resolve, ms));
await pause(400);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment