Skip to content

Instantly share code, notes, and snippets.

@gustavoguichard
Created August 30, 2021 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gustavoguichard/01445d3b284d7d840181692f7feae8a7 to your computer and use it in GitHub Desktop.
Save gustavoguichard/01445d3b284d7d840181692f7feae8a7 to your computer and use it in GitHub Desktop.
Abort a promise
const controller = new AbortController()
const toBeAborted = fetch('/', { signal: controller.signal })
controller.abort()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment