10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
export const openFileTitle = (): string => {
|
|
if (isMac) {
|
|
return 'Show in Finder'
|
|
} else if (isWindows) {
|
|
return 'Show in File Explorer'
|
|
} else {
|
|
return 'Open Containing Folder'
|
|
}
|
|
}
|