mirror of
https://github.com/get-drexa/drive.git
synced 2025-11-30 21:41:39 +00:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
|
|
export const PATH_SEPARATOR = "/"
|
||
|
|
|
||
|
|
export function baseName(path: string): string {
|
||
|
|
return path.split(PATH_SEPARATOR).pop() ?? ""
|
||
|
|
}
|
||
|
|
|
||
|
|
export function joinPath(...paths: string[]): string {
|
||
|
|
return paths.join(PATH_SEPARATOR)
|
||
|
|
}
|