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
rowTemplate.replace('[','╭').replace(/\|/g,'┬').replace(']','╮').replace(/-/g,'┄'),// CodeQL [SM02383] The non-global replaces are replacing the sides of the table and do not need to be global.
rowTemplate.replace('[','├').replace(/\|/g,'┼').replace(']','┤').replace(/-/g,'┄'),// CodeQL [SM02383] The non-global replaces are replacing the sides of the table and do not need to be global.
543
543
);
544
544
545
545
for(constvalueofrows){
@@ -551,7 +551,7 @@ export function formatAsTable(param: Cdp.Runtime.ObjectPreview): string {
rowTemplate.replace('[','╰').replace(/\|/g,'┴').replace(']','╯').replace(/-/g,'┄'),// CodeQL [SM02383] The non-global replaces are replacing the sides of the table and do not need to be global.
0 commit comments