UNPKG

replay-table

Version:

Visualize sport seasons with interactive standings

15 lines (13 loc) 396 B
export default function (path) { return new Promise ((resolve, reject) => { d3.text(path, text => { if (!text) { reject(`Sorry, we can't reach your csv file`); return; } const parsed = d3.csvParseRows(text); resolve(parsed); }); } ); };