UNPKG

@zargu/couchdb-designer

Version:

Create and testing couchdb design document form directory structure.

8 lines (6 loc) 205 B
function map (doc){ var date = new Date(doc.date); emit([date.getFullYear(), date.getMonth(), date.getDay(), date.getHours()],doc.value); } const reduce = '_sum' module.exports = { map , reduce }