MCPcopy Create free account
hub / github.com/massCodeIO/massCode / buildRequestPreview

Function buildRequestPreview

src/renderer/components/http/requestPreview.ts:287–295  ·  view source on GitHub ↗
(
  draft: HttpRequestDraft,
  format: HttpRequestPreviewFormat,
  options: HttpRequestPreviewOptions = {},
)

Source from the content-addressed store, hash-verified

285}
286
287export function buildRequestPreview(
288 draft: HttpRequestDraft,
289 format: HttpRequestPreviewFormat,
290 options: HttpRequestPreviewOptions = {},
291): string {
292 return format === 'http'
293 ? buildHttpPreview(draft, options)
294 : buildCurlPreview(draft, options)
295}

Callers

nothing calls this directly

Calls 2

buildHttpPreviewFunction · 0.85
buildCurlPreviewFunction · 0.85

Tested by

no test coverage detected