You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* All circular references are replaced by the path to the value creating a circular ref
@@ -90,12 +100,17 @@ function makeSafeToStringify(
90
100
// The ref could point to this object or just to another child
91
101
constcurPath=`${path}.${key}`;
92
102
potentiallyCircularValues.set(valRecord,curPath);
93
-
output[key]=makeSafeToStringify(
94
-
valasRecord<string,unknown>,
95
-
blacklist,
96
-
curPath,
97
-
potentiallyCircularValues
98
-
);
103
+
// Convert the path to an array and remove the root
104
+
constcurPathArray=curPath.split('.').slice(1);
105
+
// If the path is on the blacklist, it will eventually be replaced by undefined, so avoid the recursive call
106
+
if(!isOnBlackList(curPathArray,blacklist)){
107
+
output[key]=makeSafeToStringify(
108
+
valasRecord<string,unknown>,
109
+
blacklist,
110
+
curPath,
111
+
potentiallyCircularValues
112
+
);
113
+
}
99
114
}
100
115
}
101
116
});
@@ -138,7 +153,7 @@ function formatDate(date: Date): string {
138
153
* @param logHistory Log history to include in the console.txt file
139
154
* @param metadata Additional metadata to include in the metadata.json file
140
155
* @param reduxData Redux data to include in the redux.json file
141
-
* @param blacklist List of JSON paths to blacklist in redux data. A JSON path is a list representing the path to that value (e.g. client.data would be `['client', 'data']`)
156
+
* @param blacklist List of JSON paths to blacklist in redux data. A JSON path is a list representing the path to that value (e.g. client.data would be `['client', 'data']`). Wildcards (*) are accepted in the path.
142
157
* @param fileNamePrefix The zip file name without the .zip extension. Ex: test will be saved as test.zip
143
158
* @returns A promise that resolves successfully if the log archive is created and downloaded successfully, rejected if there's an error
0 commit comments