()
| 15 | store = {}; |
| 16 | }, |
| 17 | get length() { |
| 18 | return Object.keys(store).length; |
| 19 | }, |
| 20 | key: (index: number) => { |
| 21 | const keys = Object.keys(store); |
| 22 | return keys[index] || null; |
nothing calls this directly
no outgoing calls
no test coverage detected