Skip to content

Instantly share code, notes, and snippets.

@Kelin2025
Created March 17, 2018 19:25
Show Gist options
  • Save Kelin2025/b0bc7568572a520149099853614d4f91 to your computer and use it in GitHub Desktop.
Save Kelin2025/b0bc7568572a520149099853614d4f91 to your computer and use it in GitHub Desktop.
Apicase timeout
/* I haven't so much time - do or go away */
const fileUpload = doRequest({
url: '/very/slow',
options: { timeout: 5000 }
})
/* Time's up - you are dead! */
fileUpload.on('cancel', () => {
console.log('Too slow!')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment