clone icon indicating copy to clipboard operation
clone copied to clipboard

Support shallow clones

Open dominicbarnes opened this issue 9 years ago • 0 comments

Would be nice if this lib had the option to do a shallow clone instead. (better performance when you know that's what you need)

// normal (deep)
var cloned = clone(obj);

// shallow
var cloned = clone(obj, true);

dominicbarnes avatar May 01 '15 00:05 dominicbarnes