Skip to content

Commit cdd4385

Browse files
committed
gettting tehre
1 parent 3c7c21c commit cdd4385

8 files changed

+276
-23
lines changed

abap.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ function escape(input) {
1010
if (input.charCodeAt(0) === 0xFEFF) {
1111
input = input.substr(1);
1212
}
13-
return input.replaceAll("`", "\\`").replaceAll("${", "\\${").trimEnd();
13+
return input.replaceAll("\\", "\\\\")
14+
.replaceAll("`", "\\`")
15+
.replaceAll("${", "\\${").trimEnd();
1416
}
1517

1618
function add(name, contents) {

package-lock.json

Lines changed: 244 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
"@abaplint/runtime": "^2.10.17",
2121
"@abaplint/transpiler": "^2.10.17",
2222
"@abaplint/transpiler-cli": "^2.10.17",
23+
"assert": "^2.1.0",
24+
"browserify-zlib": "^0.2.0",
2325
"buffer": "^6.0.3",
2426
"copy-webpack-plugin": "^12.0.2",
2527
"crypto-browserify": "^3.12.0",

public/zcl_excel_demo1.xlsx

-1 Bytes
Binary file not shown.

public/zcl_excel_demo2.xlsx

-1 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)