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.
- package/dist/index.cjs +33 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +33 -18
- package/dist/index.js.map +1 -1
- package/dist/python/python.data +148 -135
- package/dist/python/python.js +1 -1
- package/dist/python/python.wasm +0 -0
- package/dist/python/runtime.json +3 -3
- package/dist/python-abi.cjs +4 -0
- package/dist/python-abi.cjs.map +1 -1
- package/dist/python-abi.d.cts +2 -0
- package/dist/python-abi.d.ts +2 -0
- package/dist/python-abi.js +4 -0
- package/dist/python-abi.js.map +1 -1
- package/package.json +1 -1
package/dist/python/python.wasm
CHANGED
|
Binary file
|
package/dist/python/runtime.json
CHANGED
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"artifacts": {
|
|
19
19
|
"moduleUrl": "./python.js",
|
|
20
20
|
"hashes": {
|
|
21
|
-
"python.js": "sha256-
|
|
22
|
-
"python.wasm": "sha256-
|
|
23
|
-
"python.data": "sha256-
|
|
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
|
},
|
package/dist/python-abi.cjs
CHANGED
|
@@ -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
|
}
|