()
| 116 | if (e.res.statusText !== undefined) e.res.statusText = text; |
| 117 | }; |
| 118 | export const getResponseStatus = () => getEvent().res.status; |
| 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); |
nothing calls this directly
no test coverage detected
searching dependent graphs…