We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 961e68d commit 7920090Copy full SHA for 7920090
client/src/extension.ts
@@ -68,7 +68,8 @@ export async function activate(context: ExtensionContext) {
68
}
69
const jsArray = stdout
70
// remove the square brackets
71
- .replace(/^\[|\]$/g, '')
+ .replace("[", "")
72
+ .replace("]", "")
73
// split into array items
74
.split(',')
75
.map(s => s.trim().split("^"))
0 commit comments