couchrest_model/examples/word_count/views/books/chunked-map.js

3 lines
80 B
JavaScript
Raw Normal View History

function(doc) {
doc.title && doc.chunk && emit([doc.title, doc.chunk],null);
}