UNPKG

nba

Version:

JavaScript client for the NBA's stats API

9 lines (7 loc) 254 B
const findWhere = require("lodash.findwhere"); module.exports = function mergeCollections (idProp, a, b) { return a.map(function (itemA) { var itemB = findWhere(b, { [idProp]: itemA[idProp] }); return Object.assign({}, itemA, itemB); }); };