MCPcopy Create free account
hub / github.com/microsoft/AI-Engineering-Coach / formatPercent

Function formatPercent

src/core/summary-export.ts:94–97  ·  view source on GitHub ↗
(value: number)

Source from the content-addressed store, hash-verified

92}
93
94function formatPercent(value: number): string {
95 if (!Number.isFinite(value)) return '0%';
96 return `${Math.round(value * 100)}%`;
97}
98
99function summarizeFilter(filter: DateFilter): string {
100 const parts: string[] = [];

Callers 1

renderSummaryMarkdownFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected