Files
n8n-nodes-gwezz-changdunovel/node_modules/n8n-workflow/dist/esm/global-state.js
2025-10-26 23:10:15 +08:00

9 lines
273 B
JavaScript

import { deepCopy } from './utils';
let globalState = { defaultTimezone: 'America/New_York' };
export function setGlobalState(state) {
globalState = state;
}
export function getGlobalState() {
return deepCopy(globalState);
}
//# sourceMappingURL=global-state.js.map