()
| 428 | } |
| 429 | |
| 430 | get valueMapData(): Map<any, Set<TKey>> { |
| 431 | // Return a new Map with denormalized keys |
| 432 | const result = new Map<any, Set<TKey>>() |
| 433 | for (const [key, value] of this.valueMap) { |
| 434 | result.set(denormalizeUndefined(key), value) |
| 435 | } |
| 436 | return result |
| 437 | } |
| 438 | } |
nothing calls this directly
no test coverage detected