(map, depth)
| 130 | }); |
| 131 | |
| 132 | function entries(map, depth) { |
| 133 | if (depth > 0) { |
| 134 | return Array.from(map, ([k, v]) => [k, entries(v, depth - 1)]); |
| 135 | } else { |
| 136 | return map; |
| 137 | } |
| 138 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…