Skip to content

Commit 62e2fa8

Browse files
ascorbicgithub-actions[bot]
authored andcommitted
fix: update runtime compat data
1 parent f90ce77 commit 62e2fa8

File tree

8 files changed

+3551
-3551
lines changed

8 files changed

+3551
-3551
lines changed

Diff for: generator/runtimes/bun/data.json

+3,341-3,341
Large diffs are not rendered by default.

Diff for: generator/runtimes/deno/data.json

+53-53
Large diffs are not rendered by default.

Diff for: generator/runtimes/edge-light/data.json

+30-30
Large diffs are not rendered by default.

Diff for: generator/runtimes/fastly/data.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -90062,17 +90062,26 @@
9006290062
"message": "threw Error: Timed out"
9006390063
},
9006490064
{
90065-
"name": "api.ReadableStream.pipeTo",
90065+
"name": "api.ReadableStream.pipeThrough",
9006690066
"info": {
90067-
"code": "(function () {\n if (!(\"fetch\" in self)) {\n return { result: false, message: \"fetch is not defined\" };\n }\n var promise = fetch(\"/favicon/favicon.ico\")\n .then(function (response) {\n return response.body;\n })\n .catch(function () {\n // Browsers need a relative path for CORS, but JS runtimes need an absolute path to reference\n return fetch(\n \"https://mdn-bcd-collector.gooborg.com/favicon/favicon.ico\"\n ).then(function (response) {\n return response.body;\n });\n });\n if (!promise) {\n return { result: false, message: \"Promise variable is falsy\" };\n }\n return promise.then(function (instance) {\n return !!instance && \"pipeTo\" in instance;\n });\n})();\n",
90067+
"code": "(function () {\n if (!(\"fetch\" in self)) {\n return { result: false, message: \"fetch is not defined\" };\n }\n var promise = fetch(\"/favicon/favicon.ico\")\n .then(function (response) {\n return response.body;\n })\n .catch(function () {\n // Browsers need a relative path for CORS, but JS runtimes need an absolute path to reference\n return fetch(\n \"https://mdn-bcd-collector.gooborg.com/favicon/favicon.ico\"\n ).then(function (response) {\n return response.body;\n });\n });\n if (!promise) {\n return { result: false, message: \"Promise variable is falsy\" };\n }\n return promise.then(function (instance) {\n return !!instance && \"pipeThrough\" in instance;\n });\n})();\n",
90068+
"exposure": "Window"
90069+
},
90070+
"result": null,
90071+
"message": "threw Error: Timed out"
90072+
},
90073+
{
90074+
"name": "api.ReadableStream.cancel",
90075+
"info": {
90076+
"code": "(function () {\n if (!(\"fetch\" in self)) {\n return { result: false, message: \"fetch is not defined\" };\n }\n var promise = fetch(\"/favicon/favicon.ico\")\n .then(function (response) {\n return response.body;\n })\n .catch(function () {\n // Browsers need a relative path for CORS, but JS runtimes need an absolute path to reference\n return fetch(\n \"https://mdn-bcd-collector.gooborg.com/favicon/favicon.ico\"\n ).then(function (response) {\n return response.body;\n });\n });\n if (!promise) {\n return { result: false, message: \"Promise variable is falsy\" };\n }\n return promise.then(function (instance) {\n return !!instance && \"cancel\" in instance;\n });\n})();\n",
9006890077
"exposure": "Window"
9006990078
},
9007090079
"result": true
9007190080
},
9007290081
{
90073-
"name": "api.ReadableStream.pipeThrough",
90082+
"name": "api.ReadableStream.pipeTo",
9007490083
"info": {
90075-
"code": "(function () {\n if (!(\"fetch\" in self)) {\n return { result: false, message: \"fetch is not defined\" };\n }\n var promise = fetch(\"/favicon/favicon.ico\")\n .then(function (response) {\n return response.body;\n })\n .catch(function () {\n // Browsers need a relative path for CORS, but JS runtimes need an absolute path to reference\n return fetch(\n \"https://mdn-bcd-collector.gooborg.com/favicon/favicon.ico\"\n ).then(function (response) {\n return response.body;\n });\n });\n if (!promise) {\n return { result: false, message: \"Promise variable is falsy\" };\n }\n return promise.then(function (instance) {\n return !!instance && \"pipeThrough\" in instance;\n });\n})();\n",
90084+
"code": "(function () {\n if (!(\"fetch\" in self)) {\n return { result: false, message: \"fetch is not defined\" };\n }\n var promise = fetch(\"/favicon/favicon.ico\")\n .then(function (response) {\n return response.body;\n })\n .catch(function () {\n // Browsers need a relative path for CORS, but JS runtimes need an absolute path to reference\n return fetch(\n \"https://mdn-bcd-collector.gooborg.com/favicon/favicon.ico\"\n ).then(function (response) {\n return response.body;\n });\n });\n if (!promise) {\n return { result: false, message: \"Promise variable is falsy\" };\n }\n return promise.then(function (instance) {\n return !!instance && \"pipeTo\" in instance;\n });\n})();\n",
9007690085
"exposure": "Window"
9007790086
},
9007890087
"result": null,
@@ -90140,15 +90149,6 @@
9014090149
},
9014190150
"result": null,
9014290151
"message": "threw Error: Timed out"
90143-
},
90144-
{
90145-
"name": "api.Response.Response.accept_readablestream",
90146-
"info": {
90147-
"code": "(function () {\n if (!(\"Response\" in self)) {\n return { result: false, message: \"Response is not defined\" };\n }\n var instance = new Response(\"\");\n if (!(\"fetch\" in self)) {\n return { result: false, message: \"fetch is not defined\" };\n }\n var rsPromise = fetch(\"/favicon/favicon.ico\")\n .then(function (response) {\n return response.body;\n })\n .catch(function () {\n // Browsers need a relative path for CORS, but JS runtimes need an absolute path to reference\n return fetch(\n \"https://mdn-bcd-collector.gooborg.com/favicon/favicon.ico\"\n ).then(function (response) {\n return response.body;\n });\n });\n if (!rsPromise) {\n return { result: false, message: \"rsPromise is falsy\" };\n }\n return rsPromise.then(function (readableStream) {\n try {\n new Response(readableStream);\n return true;\n } catch (e) {\n return { result: false, message: e.message };\n }\n });\n})();\n",
90148-
"exposure": "Window"
90149-
},
90150-
"result": null,
90151-
"message": "threw Error: Timed out"
9015290152
}
9015390153
]
9015490154
},

0 commit comments

Comments
 (0)