formatEntriesAsText function presentation ✓ 100.0%
Last updated: 2026-03-02T13:35:57.087Z
Location
Metrics
LOC: 5
Complexity: 1
Params: 1
Coverage: 100.0% (2/2 lines, 5x executed)
Signature
formatEntriesAsText(entries: LogEntry[]): : string
Source Code
function formatEntriesAsText(entries: LogEntry[]): string {
return entries
.map((e) => `[${e.ts}] [${e.level.toUpperCase()}] [${e.ns}] ${e.msg}`)
.join("\n");
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| render | calls |