Sha256: cf26b7cf6980272cb3938de129beadc7bb778ea33f366e1d8afd1d8a52ccd7de

Contents?: true

Size: 469 Bytes

Versions: 2

Compression:

Stored size: 469 Bytes

Contents

circularjs
==========

Traverse circular javascript object graphs in a non-recursive way.

```
npm install circularjs
```

```javascript

var traverse= require('circularjs');

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

traverse(a,console.log);
```

## Linked projects

* [circularclone](https://github.com/aaaristo/circularclone): deep clone circular graphs
* [GSON](https://github.com/aaaristo/GSON): serialize circular graphs

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gson_parser-0.1.1 lib/nodejs/node_modules/gson/node_modules/circularjs/README.md
gson_parser-0.1.0 lib/nodejs/node_modules/gson/node_modules/circularjs/README.md