1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-24 15:40:21 +01:00
upscayl/electron/utils/slash.ts

5 lines
133 B
TypeScript
Raw Normal View History

2023-09-10 20:00:49 +02:00
import { getPlatform } from "./get-device-specs";
2023-09-10 11:14:04 +02:00
const slash: string = getPlatform() === "win" ? "\\" : "/";
export default slash;