kungfu
v0.0.2
Published
Utility package
Downloads
1
Readme
Utilities library for Node.js
Object
Merge
var object = require('kungfu').object;
var obj = object.merge({a: 'a', b: 'b'}, {c: 'c', 'a': 'toto'});
print(obj); // prints {c:'c', b:'b', a:'toto'}