MCPcopy Index your code
hub / github.com/react/react / serializeDebugLargeTextString

Function serializeDebugLargeTextString

packages/react-server/src/ReactFlightServer.js:2961–2966  ·  view source on GitHub ↗
(request: Request, text: string)

Source from the content-addressed store, hash-verified

2959}
2960
2961function serializeDebugLargeTextString(request: Request, text: string): string {
2962 request.pendingDebugChunks++;
2963 const textId = request.nextChunkId++;
2964 emitTextChunk(request, textId, text, true);
2965 return serializeByValueID(textId);
2966}
2967
2968function serializeMap(
2969 request: Request,

Callers 1

renderDebugModelFunction · 0.85

Calls 2

emitTextChunkFunction · 0.85
serializeByValueIDFunction · 0.70

Tested by

no test coverage detected