()
| 40 | }; |
| 41 | |
| 42 | export const getState = (): Circus.State => |
| 43 | (globalThis as Global.Global)[STATE_SYM] as Circus.State; |
| 44 | export const setState = (state: Circus.State): Circus.State => { |
| 45 | setGlobal(globalThis, STATE_SYM, state); |
| 46 | protectProperties(state, [ |
no outgoing calls
no test coverage detected