mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-07-13 16:37:23 +02:00
6 lines
203 B
TypeScript
6 lines
203 B
TypeScript
const { NODE_ENV } = process.env;
|
|
|
|
export const inTest = NODE_ENV === 'test';
|
|
export const inProduction = NODE_ENV === 'production';
|
|
export const inDevelopment = !NODE_ENV || NODE_ENV === 'development';
|