Created
August 30, 2021 20:28
-
-
Save gustavoguichard/01445d3b284d7d840181692f7feae8a7 to your computer and use it in GitHub Desktop.
Abort a promise
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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