@sveltejs/kit 1.0.0-next.249 → 1.0.0-next.252
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/assets/server/index.js +1 -1
- package/dist/chunks/index.js +11 -2242
- package/dist/chunks/index2.js +1 -1
- package/dist/chunks/index3.js +5 -5
- package/dist/chunks/index5.js +121 -19
- package/dist/chunks/index6.js +1 -1
- package/dist/cli.js +39 -38
- package/package.json +2 -2
- package/types/ambient-modules.d.ts +2 -8
- package/types/config.d.ts +5 -2
- package/dist/chunks/url.js +0 -119
package/assets/server/index.js
CHANGED
|
@@ -175,7 +175,7 @@ function is_pojo(body) {
|
|
|
175
175
|
if (body._readableState && body._writableState && body._events) return false;
|
|
176
176
|
|
|
177
177
|
// similarly, it could be a web ReadableStream
|
|
178
|
-
if (body
|
|
178
|
+
if (typeof ReadableStream !== 'undefined' && body instanceof ReadableStream) return false;
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
return true;
|