Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

jsoncopy

omrilotan5.7kMIT1.0.0

Create a deep clone of an object using JSON functionalities.

readme

jsoncopy

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