sandboxedjs 0.1.37 → 0.1.38
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/agent.cjs +38 -13
- package/dist/agent.cjs.map +1 -1
- package/dist/agent.d.cts +1 -1
- package/dist/agent.d.ts +1 -1
- package/dist/agent.js +38 -13
- package/dist/agent.js.map +1 -1
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/worker-entry.js +1 -0
- package/dist/worker-entry.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24944,6 +24944,7 @@ function createCoreModules(options) {
|
|
|
24944
24944
|
}
|
|
24945
24945
|
});
|
|
24946
24946
|
processObject.stdin = stdin;
|
|
24947
|
+
Reflect.deleteProperty(processObject, "browser");
|
|
24947
24948
|
const fs = createFsModule(volume, () => cwd, options.stdinPath);
|
|
24948
24949
|
const path = createPathModule(() => cwd);
|
|
24949
24950
|
const consoleObject = new Console(stdoutWrite, stderrWrite);
|