Skip to content

Commit c4cda4b

Browse files
Bug/ast-116875 Fixed regex to replace surrounding quotes. (#123)
* Fixed regex.
1 parent 685b4af commit c4cda4b

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)