Skip to content

Instantly share code, notes, and snippets.

@michel-zimmer
Created March 28, 2017 23:46
Show Gist options
  • Save michel-zimmer/988305c0335154442b647051c9be8c99 to your computer and use it in GitHub Desktop.
Save michel-zimmer/988305c0335154442b647051c9be8c99 to your computer and use it in GitHub Desktop.
Timeout the Promise chain
module.exports = ms => res => new Promise(resolve => setTimeout(() => { resolve(res) }, ms || 500))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment