MCPcopy Index your code
hub / github.com/solidjs/solid-start / deserializeFromJSONString

Function deserializeFromJSONString

packages/start/src/fns/serialization.ts:198–201  ·  view source on GitHub ↗
(json: string)

Source from the content-addressed store, hash-verified

196}
197
198export async function deserializeFromJSONString(json: string) {
199 const blob = new Response(json);
200 return await deserializeJSONStream(blob);
201}
202
203export async function deserializeJSONStream(response: Response | Request) {
204 if (!response.body) {

Callers 1

handleServerFunctionFunction · 0.90

Calls 1

deserializeJSONStreamFunction · 0.85

Tested by

no test coverage detected