UNPKG

@zargu/couchdb-designer

Version:

Create and testing couchdb design document form directory structure.

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