You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
284 B
6 lines
284 B
/**
|
|
* Little AbortController proxy module so we can swap out the implementation easily later.
|
|
*/
|
|
export const { AbortController } = globalThis
|
|
export const { AbortSignal } = globalThis
|
|
export const createAbortError = (message = 'Aborted') => new DOMException(message, 'AbortError')
|
|
|