zmc
2023-09-05 c2f95b0b9090a2394b5b068582b932a5e57b86aa
1
2
3
4
5
6
7
8
9
10
 
import { store } from './singleton';
 
export function updateVariable() {
  store.variable = 'World';
}
 
export function getVariable() {
  return store.variable;
}