(name: string)
| 119 | export const getResponseStatusText = () => getEvent().res.statusText; |
| 120 | export const getResponseHeaders = () => Object.fromEntries(getEvent().res.headers.entries()); |
| 121 | export const getResponseHeader = (name: string) => getEvent().res.headers.get(name); |
| 122 | export const setResponseHeaders = (values: Record<string, string>) => { |
| 123 | const headers = getEvent().res.headers; |
| 124 | for (const [name, value] of Object.entries(values)) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…