(path: string)
| 89 | } |
| 90 | |
| 91 | function toCollectionPath(path: string): string { |
| 92 | if (path === "/") return "/"; |
| 93 | return path.endsWith("/") ? path : `${path}/`; |
| 94 | } |
| 95 | |
| 96 | function createHttpWebDavError( |
| 97 | status: number, |
no outgoing calls
no test coverage detected