mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-25 01:32:27 +01:00
7 lines
185 B
JavaScript
7 lines
185 B
JavaScript
export function basename(str, sep = "/") {
|
|
return str.substr(str.lastIndexOf(sep) + 1);
|
|
}
|
|
|
|
export function join(baseURL, segment) {
|
|
return new URL(segment, baseURL).pathname;
|
|
}
|