MCPcopy
hub / github.com/prisma/prisma / textResponse

Function textResponse

packages/cli/src/Studio.ts:681–688  ·  view source on GitHub ↗
(text: string, status: number, headers?: Record<string, string>)

Source from the content-addressed store, hash-verified

679}
680
681function textResponse(text: string, status: number, headers?: Record<string, string>): Response {
682 return withCors(
683 new Response(text, {
684 headers,
685 status,
686 }),
687 )
688}
689
690function withCors(response: Response): Response {
691 const headers = new Headers(response.headers)

Callers 3

handleStudioBffRequestFunction · 0.85
serveStudioAssetFunction · 0.85

Calls 1

withCorsFunction · 0.85

Tested by

no test coverage detected