1 2 3
export function prependForwardSlash(path: string) { return path[0] === '/' ? path : '/' + path; }