UNPKG

d3-dag

Version:

Layout algorithms for visualizing directed acylic graphs.

7 lines (6 loc) 154 B
// Return an array of all of the links in a dag export default function() { const links = []; this.eachLinks((l) => links.push(l)); return links; }