1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-28 01:10:52 +01:00
upscayl/renderer/utils/flags.ts
2023-10-14 06:30:49 +05:30

9 lines
187 B
TypeScript

export const FLAGS = {
IS_APPLE_STORE_BUILD: "IS_APPLE_STORE_BUILD",
};
// Get flag from process.env
export const flag = (flag: keyof typeof FLAGS) => {
return process.env[flag];
};