We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a19b9a6 commit e672f80Copy full SHA for e672f80
packages/ovr/src/jsx/index.ts
@@ -162,8 +162,8 @@ export async function* toGenerator(
162
yield* toGenerator(result.value);
163
164
if (performance.now() > deadline) {
165
- // yields back to the event loop to send chunks
166
- // or check if the request has been cancelled
+ // yields back to the event loop if deadline is reached
+ // to send chunks or check if the request has been cancelled
167
await setImmediate();
168
deadline = performance.now() + ms;
169
}
0 commit comments