2026-01-04 05:19:47 +05:00
|
|
|
import { invoke } from "@tauri-apps/api/core"
|
2023-06-11 19:18:58 +05:00
|
|
|
|
2026-01-04 22:50:34 +05:00
|
|
|
// ### UTILITY FUNCTIONS
|
2023-06-11 19:18:58 +05:00
|
|
|
|
2026-01-04 22:50:34 +05:00
|
|
|
export function capitalizeFirstLetter(str: string): string {
|
|
|
|
|
if (!str) return ""
|
|
|
|
|
return str.charAt(0).toUpperCase() + str.slice(1)
|
2023-06-11 19:18:58 +05:00
|
|
|
}
|
|
|
|
|
|
2026-01-04 22:50:34 +05:00
|
|
|
export function showInExplorer(path: string): void {
|
|
|
|
|
invoke("show_in_folder", { path })
|
|
|
|
|
.catch(err => console.error("failed to open explorer:", err))
|
2023-06-11 19:18:58 +05:00
|
|
|
}
|