MCPcopy Create free account
hub / github.com/callstack/agent-device / formatQuotedList

Function formatQuotedList

src/utils/output.ts:543–547  ·  view source on GitHub ↗
(values: string[])

Source from the content-addressed store, hash-verified

541}
542
543function formatQuotedList(values: string[]): string {
544 const shown = values.slice(0, 4).map((value) => JSON.stringify(value));
545 const suffix = values.length > shown.length ? ` +${values.length - shown.length} more` : '';
546 return `${shown.join(', ')}${suffix}`;
547}
548
549function formatScreenshotRegionDetails(region: ScreenshotDiffRegion): string | null {
550 const details = [

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…