UNPKG

@zargu/couchdb-designer

Version:

Create and testing couchdb design document form directory structure.

7 lines (5 loc) 174 B
function map (doc){ var date = new Date(doc.date); emit([date.getFullYear(), date.getMonth(), date.getDay(), date.getHours()],doc.value); } module.exports = { map }