UNPKG

@zargu/couchdb-designer

Version:

Create and testing couchdb design document form directory structure.

9 lines (8 loc) 199 B
function map(doc) { if (doc.type === 'post' && doc.tags && Array.isArray(doc.tags)) { doc.tags.forEach(function (tag) { emit(tag.toLowerCase(), 1); }); } } module.exports = { map }