* Test whether a key exists in the store.
(key: StateKey<T>)
| 108 | * Test whether a key exists in the store. |
| 109 | */ |
| 110 | hasKey<T>(key: StateKey<T>): boolean { |
| 111 | return this.store.hasOwnProperty(key); |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Indicates whether the state is empty. |
no outgoing calls
no test coverage detected