@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.
@@ -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[Symbol.toStringTag] === 'ReadableStream') return false;
178
+ if (typeof ReadableStream !== 'undefined' && body instanceof ReadableStream) return false;
179
179
  }
180
180
 
181
181
  return true;