couchrest_model/spec/couchrest/helpers/fixtures/couchapp/views/example-map.js
2008-10-14 01:07:48 -07:00

8 lines
175 B
JavaScript

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