Files
bs-manager/src/renderer/helpers/maps-utils.ts
T
2022-12-06 00:52:37 +01:00

10 lines
306 B
TypeScript

import { BsvMapDetail } from "shared/models/maps";
export function getMapZipUrlFromMapDetails(map: BsvMapDetail){
const hash = map.versions.at(0).hash;
return getMapZipUrlFromHash(hash);
}
export function getMapZipUrlFromHash(hash: string){
return `https://r2cdn.beatsaver.com/${hash}.zip`;
}