()
| 49 | } |
| 50 | |
| 51 | function createDictionary<T>(): Record<string, T> { |
| 52 | // StateKey can be any string, including names of special Object prototype properties. |
| 53 | return Object.create(null); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * A key value store that is transferred from the application on the server side to the application |
no test coverage detected