(headers: Entry["request"]["headers"])
| 210 | const headersToIgnore = new Set<string>(ignoreTheseHeaders); |
| 211 | |
| 212 | export const filterIgnoreHeaders = (headers: Entry["request"]["headers"]) => { |
| 213 | return headers.filter(({ name }) => { |
| 214 | return !headersToIgnore.has(name.toLowerCase()); |
| 215 | }); |
| 216 | }; |
| 217 | |
| 218 | export const defaultAuthHeaders = [ |
| 219 | "access-key", |