()
| 62 | } |
| 63 | |
| 64 | export function getProjectZipUrl() { |
| 65 | const projectId = getProjectId(); |
| 66 | const url = new URL(window.location.href); |
| 67 | url.pathname = "/project/" + projectId + "/download/zip"; |
| 68 | url.search = ""; |
| 69 | url.hash = ""; |
| 70 | return url.toString(); |
| 71 | } |
| 72 | |
| 73 | // Generate ID functions |
| 74 | export function generateIdSeed() { |
nothing calls this directly
no test coverage detected