Advertisement
Guest User

Untitled

a guest
Jun 26th, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. //File mongo_functions
  2. function merge (reciever, obj2) {
  3. for (var attrname in obj2) {
  4. reciever[attrname] = obj2[attrname];
  5. }
  6. };
  7.  
  8.  
  9. db.system.js.save({ _id:"merge", value:merge });
  10.  
  11. // Install with mongo localhost/dbname mongo_functions.js
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement