MCPcopy Index your code
hub / github.com/sql-js/sql.js / demangleAll

Function demangleAll

js/sql-debug.js:1041–1049  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

1039}
1040
1041function demangleAll(text) {
1042 var regex =
1043 /__Z[\w\d_]+/g;
1044 return text.replace(regex,
1045 function(x) {
1046 var y = demangle(x);
1047 return x === y ? x : (x + ' [' + y + ']');
1048 });
1049}
1050
1051function jsStackTrace() {
1052 var err = new Error();

Callers 1

stackTraceFunction · 0.70

Calls 1

demangleFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…