forked from intercom/intercom-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheaders.ts
More file actions
35 lines (30 loc) · 1.11 KB
/
headers.ts
File metadata and controls
35 lines (30 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
export function mergeHeaders<THeaderValue>(
...headersArray: (Record<string, THeaderValue> | null | undefined)[]
): Record<string, string | THeaderValue> {
const result: Record<string, THeaderValue> = {};
for (const [key, value] of headersArray
.filter((headers) => headers != null)
.flatMap((headers) => Object.entries(headers))) {
const insensitiveKey = key.toLowerCase();
if (value != null) {
result[insensitiveKey] = value;
} else if (insensitiveKey in result) {
delete result[insensitiveKey];
}
}
return result;
}
export function mergeOnlyDefinedHeaders<THeaderValue>(
...headersArray: (Record<string, THeaderValue> | null | undefined)[]
): Record<string, THeaderValue> {
const result: Record<string, THeaderValue> = {};
for (const [key, value] of headersArray
.filter((headers) => headers != null)
.flatMap((headers) => Object.entries(headers))) {
const insensitiveKey = key.toLowerCase();
if (value != null) {
result[insensitiveKey] = value;
}
}
return result;
}