UNPKG

nba

Version:

JavaScript client for the NBA's stats API

8 lines 207 B
module.exports = function collectify (headers, rows) { return rows.map(function (row) { return row.reduce(function (cell, val, i) { cell[headers[i]] = val; return cell; }, {}); }); };