(d)
| 59 | |
| 60 | // TOO MANY CHILDREN |
| 61 | function truncate(d) { |
| 62 | if (d.children) { |
| 63 | d.children = d.children.slice(0,20); |
| 64 | d.children.forEach(truncate); |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | function collapse(d) { |
| 69 | if (d.children) { |
nothing calls this directly
no outgoing calls
no test coverage detected