@php-wasm/web 1.0.19 → 1.0.21
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/index.js +4 -0
- package/index.js.map +1 -1
- package/package.json +7 -7
- package/php/asyncify/8_4_0/php_8_4.wasm +0 -0
- package/php/asyncify/php_8_4.js +105 -0
- package/php/jspi/8_4_0/php_8_4.wasm +0 -0
- package/php/jspi/php_8_4.js +105 -0
package/index.js
CHANGED
|
@@ -96,6 +96,8 @@ function x(n) {
|
|
|
96
96
|
async function We(n = Le) {
|
|
97
97
|
if (await ye())
|
|
98
98
|
switch (n) {
|
|
99
|
+
case "8.4":
|
|
100
|
+
return await import("./php/jspi/php_8_4.js");
|
|
99
101
|
case "8.3":
|
|
100
102
|
return await import("./php/jspi/php_8_3.js");
|
|
101
103
|
case "8.2":
|
|
@@ -117,6 +119,8 @@ async function We(n = Le) {
|
|
|
117
119
|
}
|
|
118
120
|
else
|
|
119
121
|
switch (n) {
|
|
122
|
+
case "8.4":
|
|
123
|
+
return await import("./php/asyncify/php_8_4.js");
|
|
120
124
|
case "8.3":
|
|
121
125
|
return await import("./php/asyncify/php_8_3.js");
|
|
122
126
|
case "8.2":
|