From f4812b221823b587cd2256537cb00fefda29ce3b Mon Sep 17 00:00:00 2001 From: Cody Rigney Date: Wed, 18 Dec 2024 05:01:18 -0500 Subject: [PATCH] Support if-none-match and if-match. (#1366) --- src/internal/helper.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/internal/helper.ts b/src/internal/helper.ts index 31adcb37..4368719b 100644 --- a/src/internal/helper.ts +++ b/src/internal/helper.ts @@ -376,6 +376,8 @@ export function isSupportedHeader(key: string) { 'content-disposition', 'content-language', 'x-amz-website-redirect-location', + 'if-none-match', + 'if-match', ] return supported_headers.includes(key.toLowerCase()) }