formatTime function presentation ~ 75.0%
Last updated: 2026-03-02T13:35:57.087Z
Location
Metrics
LOC: 8
Complexity: 2
Params: 1
Coverage: 75.0% (3/4 lines, 95x executed)
Signature
formatTime(ts: string): : string
Source Code
function formatTime(ts: string): string {
try {
const d = new Date(ts);
return d.toLocaleTimeString("pt-BR");
} catch {
return ts;
}
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| renderEntries | calls |