All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.examples.scrub.js Maven / Gradle / Ivy

The newest version!
'use strict';

// scrub out circular references
var traverse = require('traverse');

var obj = { a: 1, b: 2, c: [3, 4] };
obj.c.push(obj);

var scrubbed = traverse(obj).map(function () {
	if (this.circular) { this.remove(); }
});
console.dir(scrubbed);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy