Skip to content

Instantly share code, notes, and snippets.

@mikeal
Created August 11, 2009 18:34
Show Gist options
  • Save mikeal/166039 to your computer and use it in GitHub Desktop.
Save mikeal/166039 to your computer and use it in GitHub Desktop.
# Before
function (doc) {
if (doc.type == 'tcm-testcase') {
emit([doc.product, doc.title], doc);
}
}
# After
function (doc) {
if (doc.type == 'tcm-testcase') {
for (i in doc.title) {
emit([doc.product, doc.title[i]], doc);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment