couchrest_model/lib/couchrest/helper/app-template/views/example/map.js

10 lines
201 B
JavaScript
Raw Normal View History

2008-09-16 11:15:00 -04:00
// an example map function, emits the doc id
// and the list of keys it contains
// !code lib.helpers.math
2008-09-16 11:15:00 -04:00
function(doc) {
var k, keys = []
for (k in doc) keys.push(k);
emit(doc._id, keys);
};