mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-24 15:40:21 +01:00
5 lines
134 B
TypeScript
5 lines
134 B
TypeScript
import { getPlatform } from "../get-device-specs";
|
|
|
|
const slash: string = getPlatform() === "win" ? "\\" : "/";
|
|
export default slash;
|