@abaplint/transpiler 2.12.21 → 2.12.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7,7 +7,7 @@ const handle_fugr_1 = require("./handlers/handle_fugr");
|
|
|
7
7
|
function escapeNamespaceFilename(filename) {
|
|
8
8
|
// ES modules are resolved and cached as URLs. This means that special characters must be
|
|
9
9
|
// percent-encoded, such as # with %23 and ? with %3F.
|
|
10
|
-
return filename.replace(/\//g, "%23");
|
|
10
|
+
return filename.replace(/\//g, "%23").replace(/\./g, "%2e");
|
|
11
11
|
}
|
|
12
12
|
class Initialization {
|
|
13
13
|
script(reg, dbSetup, options, useImport) {
|