Skip to content

Instantly share code, notes, and snippets.

@henriquegogo
Created May 19, 2011 14:14
Show Gist options
  • Save henriquegogo/980831 to your computer and use it in GitHub Desktop.
Save henriquegogo/980831 to your computer and use it in GitHub Desktop.
Generic by_type map.js for map/reduce couchdb
function(doc) {
var value = {};
for (property in doc) value[property] = doc[property];
delete value._id;
delete value._rev;
delete value.type;
emit(doc.type, value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment