(value: any)
| 191 | } |
| 192 | |
| 193 | export async function serializeToJSONString(value: any) { |
| 194 | const response = new Response(serializeToJSONStream(value)); |
| 195 | return await response.text(); |
| 196 | } |
| 197 | |
| 198 | export async function deserializeFromJSONString(json: string) { |
| 199 | const blob = new Response(json); |
no test coverage detected
searching dependent graphs…