Skip to content

Instantly share code, notes, and snippets.

@wesww
wesww / gist:d1f2dd21468c1c1ad791a63b92b70fdc
Created March 31, 2017 21:27 — forked from johnbabb/gist:2d69374455e386eae87a
Chrome Dev Tools - Save Large Variable to File.
var JsonNetDecycle = (function () {
function JsonNetDecycle() { }
JsonNetDecycle.decycle = function decycle(obj) {
var catalog = [];
var newObj = JsonNetDecycle.getDecycledCopy(obj, catalog);
return newObj;
}
JsonNetDecycle.getDecycledCopy = function getDecycledCopy(obj, catalog) {
var i;
var name;