Skip to content

Commit 9f0ba99

Browse files
Fixed regex.
1 parent 0a1fdf0 commit 9f0ba99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/wrapper/ExecutionService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function transform(n:string) {
5959
}
6060

6161
let r = "";
62-
if(n) r = n.replace(/"'/g, "").replace("/[, ]/g",",");
62+
if(n) r = n.replace(/["']/g, "").replace("/[, ]/g",",");
6363
return r;
6464
}
6565

0 commit comments

Comments
 (0)