9 lines
273 B
JavaScript
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
|