couchrest_model/lib/couchrest/helper/template-app/views/example/map.js
2009-01-01 22:45:41 -08:00

9 lines
192 B
JavaScript

// an example map function, emits the doc id
// and the list of keys it contains
function(doc) {
// include-lib
var k, keys = []
for (k in doc) keys.push(k);
emit(doc._id, keys);
};