(folder: string)
| 38 | } |
| 39 | |
| 40 | export function getFolderUrl(folder: string) { |
| 41 | const assetUrl = new URL(`assets/folder/${folder}`, getPublicURL()); |
| 42 | |
| 43 | assetUrl.searchParams.set('download', ''); |
| 44 | |
| 45 | return assetUrl.href; |
| 46 | } |
nothing calls this directly
no test coverage detected