Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@benjamingr
Created October 16, 2018 17:11
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 benjamingr/5bb6432afbbcd51ca47c92c0efd6afb9 to your computer and use it in GitHub Desktop.
Save benjamingr/5bb6432afbbcd51ca47c92c0efd6afb9 to your computer and use it in GitHub Desktop.
class AggregateAbortController extends AbortController {
constructor(...controllers = []) {
super();
this.controllers = controllers;
}
abort() {
for(const controllers of this.controllers) {
controllers.abort();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment