Skip to content

Instantly share code, notes, and snippets.

@radleta
Last active October 23, 2018 16:11
Show Gist options
  • Save radleta/e61f0fd71f638293119bad09251f4d93 to your computer and use it in GitHub Desktop.
Save radleta/e61f0fd71f638293119bad09251f4d93 to your computer and use it in GitHub Desktop.
Count Properties of Value Obj (Couchbase Reduce Function)
function (keys, values, rereduce)
{
var reduced = {};
for (var v in values) {
var val = values[v];
for (var k in val) {
if (val[k]) {
if (rereduce) {
reduced[k] = (reduced[k] || 0) + (val[k] || 0);
} else {
reduced[k] = (reduced[k] || 0) + 1;
}
}
}
}
return reduced;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment