refactor(core): Move isObjectLiteral to @n8n/backend-common (#15414)

This commit is contained in:
Iván Ovejero
2025-05-15 12:31:58 +02:00
committed by GitHub
parent eecaea15f7
commit 226f1c73ce
15 changed files with 28 additions and 23 deletions

View File

@@ -6,3 +6,5 @@ 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';
export { isObjectLiteral } from './utils/is-object-literal';