1.0.0 • Published 6 years ago

jsoncopy v1.0.0

Weekly downloads
880
License
MIT
Repository
github
Last release
6 years ago

jsoncopy npm.io npm.io

Create a deep clone of an object using JSON functionalities. Very efficient and quick, not a comprehensive copyier (can't copy functions, circular references)

const jsoncopy = require('jsoncopy');

const orig = {top: {nested: {value: 1}}};
const copy = jsoncopy(obj);
orig.top.nested.value = 2;

orig.top.nested.value // 2
copy.top.nested.value // 1