初始化环境文件
This commit is contained in:
19
node_modules/@smithy/node-http-handler/dist-es/build-abort-error.js
generated
vendored
Normal file
19
node_modules/@smithy/node-http-handler/dist-es/build-abort-error.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
export function buildAbortError(abortSignal) {
|
||||
const reason = abortSignal && typeof abortSignal === "object" && "reason" in abortSignal
|
||||
? abortSignal.reason
|
||||
: undefined;
|
||||
if (reason) {
|
||||
if (reason instanceof Error) {
|
||||
const abortError = new Error("Request aborted");
|
||||
abortError.name = "AbortError";
|
||||
abortError.cause = reason;
|
||||
return abortError;
|
||||
}
|
||||
const abortError = new Error(String(reason));
|
||||
abortError.name = "AbortError";
|
||||
return abortError;
|
||||
}
|
||||
const abortError = new Error("Request aborted");
|
||||
abortError.name = "AbortError";
|
||||
return abortError;
|
||||
}
|
||||
Reference in New Issue
Block a user