(path: unknown[])
| 74 | } |
| 75 | |
| 76 | function has(path: unknown[]) { |
| 77 | const targetMap = getFinalTargetMap(path); |
| 78 | |
| 79 | return targetMap.has(targetSymbol); |
| 80 | } |
| 81 | |
| 82 | function set(path: unknown[], value: V) { |
| 83 | const targetMap = getFinalTargetMap(path); |
nothing calls this directly
no test coverage detected