Files
yaak-mountain-loop/apps/yaak-client/lib/reveal.ts
T

10 lines
244 B
TypeScript

import { platform } from "@yaakapp-internal/platform";
const os = platform.osType();
export const revealInFinderText =
os === "macos"
? "Reveal in Finder"
: os === "windows"
? "Show in Explorer"
: "Show in File Manager";