UNPKG

replay-table

Version:

Visualize sport seasons with interactive standings

12 lines (9 loc) 296 B
export default function (cell, roundIndex) { const classes = ['spark']; if (cell.roundMeta.index === roundIndex) { classes.push('current'); } else if (cell.roundMeta.index > roundIndex) { classes.push('overlapped'); } return classes.join(' '); };