Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ In order for data from a server `load` function to get to the browser, we have t
When we server-render a page, we tell devalue to serialize promises as function calls that create a _deferred_. This is a simplified version of the code SvelteKit adds to the page:

```js
// @errors: 2339 7006
// @errors: 2339 7006 2695 7015
const deferreds = new Map();

window.defer = (id) => {
Expand Down
Loading