Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Last active August 29, 2015 14:19
Show Gist options
  • Save ajcrites/4251cf1ad7ab205e14f1 to your computer and use it in GitHub Desktop.
Save ajcrites/4251cf1ad7ab205e14f1 to your computer and use it in GitHub Desktop.
results = {};
queryRows.forEach(function (row) {
if (!results.hasOwnProperty(row.identifier)) {
results[row.identifier] = {
items: [],
};
}
results[row.identifier].items.push(row.itemName);
});
return _.values(results);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment