Files
stream-bypass/src/utils/extract.ts
2025-11-08 18:29:28 +01: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);
}