UNPKG

d3-dag

Version:

Layout algorithms for visualizing directed acylic graphs.

7 lines (6 loc) 139 B
// Return an array of all descendants export default function() { const descs = []; this.each((n) => descs.push(n)); return descs; }