Lines Matching refs:stringify
2199 // A more universal stringify that supports more types than JSON.
2203 function Stringify(x, depth) {
2218 return "Symbol(" + (x.name ? Stringify(x.name, depth) : "") + ")"
2225 {}.hasOwnProperty.call(x, i) ? Stringify(x[i], depth - 1) : "");
2238 props.push(name + ": " + Stringify(desc.value, depth - 1));