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 2c08d4f commit 5adb3f1Copy full SHA for 5adb3f1
packages/svelte/src/internal/server/renderer.js
@@ -526,7 +526,7 @@ export class Renderer {
526
/** @type {[string, string][]} */
527
let entries = [];
528
for (const [k, v] of map) {
529
- const serialize = v.stringify ?? (default_stringify ??= new MemoizedUneval().uneval);
+ const serialize = v.stringify ?? (default_stringify ??= uneval);
530
// sequential await is okay here -- all the work is already kicked off
531
entries.push([k, serialize(await v.value)]);
532
}
0 commit comments