sandboxedjs 0.1.69 → 0.1.70

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.
Binary file
@@ -18,9 +18,9 @@
18
18
  "artifacts": {
19
19
  "moduleUrl": "./python.js",
20
20
  "hashes": {
21
- "python.js": "sha256-3a6b27974ad6102edfe43dc56fc13003cfa6a57d0adbf62668ea14845651781b",
22
- "python.wasm": "sha256-5819858e6d9114b297310641b66680aa3d7cfef34b39bcd90bba11004483a05c",
23
- "python.data": "sha256-cc6790dab6abf55be3705fd64be3721000372eddac8968e7d0e9420602570a43",
21
+ "python.js": "sha256-f15ddd5fe1dd1185aaf8d87be4822942bd5f985b05fd1f70fe2e74e060c86ab2",
22
+ "python.wasm": "sha256-9483f54309bb44181ae8a2c7f415c1cf6ada4d2fe45f23bceb25deb51e008be2",
23
+ "python.data": "sha256-416479344ec1a72841a3e0f978bb4b5f212ae03b9256d78b3f3d71bdb5d3082a",
24
24
  "python.worker.js": "sha256-63bb1df52c4e3a95eae7b2d77c98554188fcc5925e72628ea0c34d5c573977a5"
25
25
  }
26
26
  },
@@ -1007,6 +1007,10 @@ var DescriptorTable = class _DescriptorTable {
1007
1007
  }
1008
1008
  }
1009
1009
  }
1010
+ /** The numbers this table currently holds, in ascending order. */
1011
+ fds() {
1012
+ return [...this.slots.keys()].sort((a, b) => a - b);
1013
+ }
1010
1014
  get openCount() {
1011
1015
  return this.slots.size;
1012
1016
  }