UNPKG

@uppy/aws-s3

Version:

Upload to Amazon S3 with Uppy

8 lines 249 B
import { createAbortError } from '@uppy/utils/lib/AbortController'; export function throwIfAborted(signal) { if (signal != null && signal.aborted) { throw createAbortError('The operation was aborted', { cause: signal.reason }); } }