(value: string)
| 49 | } |
| 50 | |
| 51 | function encodeRfc3986(value: string): string { |
| 52 | return encodeURIComponent(value).replace(/[!'()*]/g, char => `%${char.charCodeAt(0).toString(16).toUpperCase()}`); |
| 53 | } |
| 54 | |
| 55 | function buildS3Path(...parts: string[]): string { |
| 56 | const normalized = parts |
nothing calls this directly
no outgoing calls
no test coverage detected