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 d6512cf commit 961e68dCopy full SHA for 961e68d
client/src/extension.ts
@@ -68,7 +68,7 @@ export async function activate(context: ExtensionContext) {
68
}
69
const jsArray = stdout
70
// remove the square brackets
71
- .slice(1, -2)
+ .replace(/^\[|\]$/g, '')
72
// split into array items
73
.split(',')
74
.map(s => s.trim().split("^"))
0 commit comments