formatEntriesAsText function presentation ✓ 100.0%

Last updated: 2026-03-02T13:35:57.087Z

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)

graph LR formatEntriesAsText["formatEntriesAsText"] render["render"] render -->|calls| formatEntriesAsText style formatEntriesAsText fill:#dbeafe,stroke:#2563eb,stroke-width:2px click formatEntriesAsText "9512b6f4ff5fc5a0.html" click render "80ece8fdb820f2e0.html"
SourceType
render calls