mirror of
https://github.com/bytedream/stream-bypass.git
synced 2025-06-27 10:30:31 +02:00
Fix lastPathSegment util
This commit is contained in:
@ -1,3 +1,6 @@
|
|||||||
export function lastPathSegment(path: string): string {
|
export function lastPathSegment(path: string): string {
|
||||||
return path.substring(path.lastIndexOf('/'));
|
while (path.endsWith('/')) {
|
||||||
|
path = path.slice(0, -1);
|
||||||
|
}
|
||||||
|
return path.substring(path.lastIndexOf('/') + 1);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user