@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/dist/index.mjs CHANGED
@@ -9916,6 +9916,7 @@ function normalizeScriptBody(scriptBody) {
9916
9916
  } else if (/^\s*function\s+getData\b/.test(cleanBody)) {
9917
9917
  cleanBody = cleanBody.replace(/^\s*function\s+getData\b/, "export async function getData");
9918
9918
  }
9919
+ cleanBody = cleanBody.replace(/(?<!\\)\\([dwsDWS])/g, "\\\\$1");
9919
9920
  return cleanBody;
9920
9921
  }
9921
9922
  var ScriptStore = class {