UNPKG

replay-table

Version:

Visualize sport seasons with interactive standings

13 lines (11 loc) 292 B
export default function (rows) { const ys = {}; rows.nodes().forEach(n => { const item = n.__data__.item; const top = n.getBoundingClientRect().top; if (!ys[item] || ys[item] < top) { ys[item] = top } }); return ys; };