From e51eeaf71734a896b7fd7ce556f3c86cb5b46326 Mon Sep 17 00:00:00 2001 From: Cody Rigney Date: Thu, 12 Dec 2024 18:13:56 -0500 Subject: [PATCH] Support if-none-match and if-match. --- 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()) }