Advertisement
dariys

Untitled

Jun 11th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function(doc,req) { if (!doc) { var new_doc = {}; if ( req.id) { new_doc._id = req.id; } else { new_doc._id = req.uuid; }; new_doc.timestamp = new Date().getTime(); new_doc.body = eval('(' + req.body + ')'); return [new_doc,'added new'];
  2.    } doc.timestamp = new Date().getTime(); return [doc,'updated'];}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement