notifyListeners function ✓ 100.0%
Last updated: 2026-03-01T23:25:47.125Z
Location
Metrics
LOC: 9
Complexity: 3
Params: 0
Coverage: 100.0% (3/3 lines, 1054x executed)
Signature
notifyListeners(): : void
Source Code
function notifyListeners(): void {
for (const fn of listeners) {
try {
fn(localEntries);
} catch {
// Listener error — ignore
}
}
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| initLogStore | calls |
| addLogEntry | calls |
| clearLogEntries | calls |