UNPKG

d3-dag

Version:

Layout algorithms for visualizing directed acylic graphs.

7 lines (6 loc) 152 B
// Get an array of all links to children export default function() { const links = []; this.eachChildLinks((l) => links.push(l)); return links; }