sandboxedjs 0.1.64 → 0.1.66

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.js CHANGED
@@ -17945,7 +17945,7 @@ var wheels_default = {
17945
17945
 
17946
17946
  // package.json
17947
17947
  var package_default = {
17948
- version: "0.1.64"};
17948
+ version: "0.1.66"};
17949
17949
 
17950
17950
  // src/runtime/python/config.ts
17951
17951
  var bundledManifest = {
@@ -19140,6 +19140,9 @@ var VirtualTcpNetwork = class {
19140
19140
 
19141
19141
  // src/runtime/python/syscall-server.ts
19142
19142
  var MAX_TRANSFER = 8 * 1024 * 1024;
19143
+ var POLLIN = 1;
19144
+ var POLLOUT = 4;
19145
+ var POLLHUP = 16;
19143
19146
  function createHostAbiServer(proc) {
19144
19147
  const files = new FileService(proc.vfs, proc.cred);
19145
19148
  const started = Date.now();
@@ -19502,9 +19505,6 @@ function createHostAbiServer(proc) {
19502
19505
  if (proc.signal.aborted) throw new PosixError(Errno.EINTR);
19503
19506
  }
19504
19507
  }
19505
- const POLLIN = 1;
19506
- const POLLOUT = 4;
19507
- const POLLHUP = 16;
19508
19508
  async function poll(requests, timeoutMs) {
19509
19509
  const deadline = timeoutMs < 0 ? Infinity : Date.now() + timeoutMs;
19510
19510
  for (; ; ) {