* Test whether a key exists in the store.
(key: StateKey<T>)
| 118 | * Test whether a key exists in the store. |
| 119 | */ |
| 120 | hasKey<T>(key: StateKey<T>): boolean { |
| 121 | return Object.hasOwn(this.store, key); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Indicates whether the state is empty. |
no outgoing calls
no test coverage detected