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

Package detail

circularclone

aaaristo25Apache20.1.7

Clones circular object graphs in a non-recursive way

json, graph, clone, object, non-recursive

readme

circularclone

Clones circular javascript object graphs, using circularjs to traverse them.

npm install circularclone

var clone= require('circularclone');

var a= { name: 'Andrea' },
    e= { name: 'Elena' };

a.daughter= e;
e.dad= a;

console.log(clone(a));