mirror of
https://github.com/aljazceru/ditto.git
synced 2026-01-05 06:34:24 +01:00
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
/** Creates an `AbortError` object matching the Fetch API. */
|
|
function abortError() {
|
|
return new DOMException('The signal has been aborted', 'AbortError');
|
|
}
|
|
|
|
export { abortError };
|