@superatomai/sdk-node 0.0.12-s → 0.0.13-s
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.
- package/README.md +942 -942
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/dist/userResponse/scripts/script-bootstrap.js.map +1 -1
- package/dist/userResponse/scripts/script-bootstrap.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9974,6 +9974,7 @@ function normalizeScriptBody(scriptBody) {
|
|
|
9974
9974
|
} else if (/^\s*function\s+getData\b/.test(cleanBody)) {
|
|
9975
9975
|
cleanBody = cleanBody.replace(/^\s*function\s+getData\b/, "export async function getData");
|
|
9976
9976
|
}
|
|
9977
|
+
cleanBody = cleanBody.replace(/(?<!\\)\\([dwsDWS])/g, "\\\\$1");
|
|
9977
9978
|
return cleanBody;
|
|
9978
9979
|
}
|
|
9979
9980
|
var ScriptStore = class {
|