Skip to content

Instantly share code, notes, and snippets.

@frentsel
Last active November 22, 2018 15:31
Show Gist options
  • Save frentsel/fa32dfbc1a27c670319694201334e0af to your computer and use it in GitHub Desktop.
Save frentsel/fa32dfbc1a27c670319694201334e0af to your computer and use it in GitHub Desktop.
// Promise
const delay = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
// or pseudo Promise
const delay = (time) => ({
then: (cb) => setTimeout(cb, time)
});
// usage
delay(5000).then(…);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment