klon

JavaScript helper for deep cloning and deep merging objects as efficiently as possible. Supports and clones complex native objects as well as circular references. Is also capable of replacing circular references with a string containing "[Circular]".
Installation
npm install klon
Usage
clone(source[, destination][, breakCircular]);
source is the object to be copied.
destination (optional) is the new object, where all properties from source will be copied to.
var klon = require('klon'),
myObject1 = {
a: 1,
b: 2,
c: {
u: 14
}
},
myObject2 = {
c: [
{ d: new Date() },
{ e: "Hello" },
{ f: "Hello" }
]
};
var newObject1 = klon(myObject1);
klon(myObject2, newObject1)
var newObject3 = klon(newObject2, klon(newObject1, {}) );
var newObject4 = klon(myObject1, {}, true);
License
MIT