Skip to content

Instantly share code, notes, and snippets.

@renanpvaz
Last active February 1, 2018 15:52
Show Gist options
  • Save renanpvaz/bb27496c8b6f8b734645bd7edb1f003c to your computer and use it in GitHub Desktop.
Save renanpvaz/bb27496c8b6f8b734645bd7edb1f003c to your computer and use it in GitHub Desktop.
Promises with timeout
const withTimeout = (time, f) => (...args) => (
Promise.race([
new Promise((_, reject) => setTimeout(reject, time, 'TIMEOUT')),
f(...args)
])
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment