UNPKG

replay-table

Version:

Visualize sport seasons with interactive standings

14 lines (12 loc) 340 B
export default function (path) { return new Promise ((resolve, reject) => { d3.json(path, data => { if (!data) { reject(`Sorry, we can't reach your json file`); return; } resolve(data); }); } ); };