This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
scoresaber-reloadedv3/projects/common/src/utils/utils.ts

7 lines
124 B
TypeScript
Raw Normal View History

2024-10-04 23:59:29 +01:00
/**
* Checks if we're in production
*/
export function isProduction() {
return process.env.NODE_ENV === "production";
}