Skip to content

Instantly share code, notes, and snippets.

@pegli
Created June 10, 2013 15:55
Show Gist options
  • Save pegli/5749878 to your computer and use it in GitHub Desktop.
Save pegli/5749878 to your computer and use it in GitHub Desktop.
emit doc keys in couchdb map function
function(doc) {
for (var i in doc) {
if (i[0] != '_' && doc.hasOwnProperty(i)) {
emit(parseInt(i), null);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment