(path: unknown[])
| 86 | } |
| 87 | |
| 88 | function get(path: unknown[]) { |
| 89 | const targetMap = getFinalTargetMap(path); |
| 90 | |
| 91 | return targetMap.get(targetSymbol) as V | undefined; |
| 92 | } |
| 93 | |
| 94 | function getOrCreate(path: unknown[], factory: () => V) { |
| 95 | const targetMap = getFinalTargetMap(path); |
nothing calls this directly
no test coverage detected