mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-28 01:10:52 +01:00
9 lines
187 B
TypeScript
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];
|
|
};
|