export function removeMultipleSlashes(str: string) { return str.replaceAll(/\/\/+/g, "/") }