mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-19 02:27:10 +00:00
20 lines
587 B
TypeScript
20 lines
587 B
TypeScript
export function getFilename(path: string | undefined) {
|
|
if (!path) return ""
|
|
const trimmed = path.replace(/[\/\\]+$/, "")
|
|
const parts = trimmed.split(/[\/\\]/)
|
|
return parts[parts.length - 1] ?? ""
|
|
}
|
|
|
|
export function getDirectory(path: string | undefined) {
|
|
if (!path) return ""
|
|
const trimmed = path.replace(/[\/\\]+$/, "")
|
|
const parts = trimmed.split(/[\/\\]/)
|
|
return parts.slice(0, parts.length - 1).join("/") + "/"
|
|
}
|
|
|
|
export function getFileExtension(path: string | undefined) {
|
|
if (!path) return ""
|
|
const parts = path.split(".")
|
|
return parts[parts.length - 1]
|
|
}
|