Sha256: 928aab724d9e9b2c5b5831c7c939a4f97905c8f3466ffe475a75b2ac51ea2912
Contents?: true
Size: 408 Bytes
Versions: 2
Compression:
Stored size: 408 Bytes
Contents
GSON ============= Serialize circular javascript object graphs, using [circularjs](https://github.com/aaaristo/circularjs) to traverse them in a non-recusive way. ``` npm install gson ``` ```javascript var GSON= require('gson'); var a= { name: 'Andrea' }, e= { name: 'Elena' }; a.daughter= e; e.dad= a; console.log(GSON.decode(GSON.encode(a))); console.log(GSON.parse(GSON.stringify(a))); ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gson_parser-0.1.1 | lib/nodejs/node_modules/gson/README.md |
gson_parser-0.1.0 | lib/nodejs/node_modules/gson/README.md |