stream-bypass/src/lib/util/extract.ts
2025-04-04 00:01:21 +02:00

7 lines
170 B
TypeScript

export function lastPathSegment(path: string): string {
while (path.endsWith('/')) {
path = path.slice(0, -1);
}
return path.substring(path.lastIndexOf('/') + 1);
}