Files
upscayl/electron/utils/slash.ts
Nayam Amarshe f69e06521c Fix refactor
2023-09-11 08:37:07 +05:30

5 lines
133 B
TypeScript

import { getPlatform } from "./get-device-specs";
const slash: string = getPlatform() === "win" ? "\\" : "/";
export default slash;