mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
10 lines
306 B
TypeScript
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`;
|
|
} |