(map, depth)
| 55 | }); |
| 56 | |
| 57 | function entries(map, depth) { |
| 58 | if (depth > 0) { |
| 59 | return Array.from(map, ([k, v]) => [k, entries(v, depth - 1)]); |
| 60 | } else { |
| 61 | return map; |
| 62 | } |
| 63 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…