Files
ezbookkeeping/src/lib/web.ts
T
2025-03-04 23:39:16 +08:00

11 lines
240 B
TypeScript

export function getBasePath(): string {
const path = window.location.pathname;
const lastSlashIndex = path.lastIndexOf('/');
if (lastSlashIndex < 0) {
return path;
}
return path.substring(0, lastSlashIndex);
}