(path: readonly string[])
| 4 | import { COMMON_ORPC_ERROR_DEFS } from '../../error' |
| 5 | |
| 6 | export function toHttpPath(path: readonly string[]): HTTPPath { |
| 7 | return `/${path.map(encodeURIComponent).join('/')}` |
| 8 | } |
| 9 | |
| 10 | export function toStandardHeaders(headers: Headers | StandardHeaders): StandardHeaders { |
| 11 | /** |
no outgoing calls
no test coverage detected