Files
GNX-mailEnterprise/frontend/node_modules/@jridgewell/trace-mapping/src/strip-filename.ts
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

9 lines
253 B
TypeScript

/**
* Removes everything after the last "/", but leaves the slash.
*/
export default function stripFilename(path: string | undefined | null): string {
if (!path) return '';
const index = path.lastIndexOf('/');
return path.slice(0, index + 1);
}