()
| 1676 | // Last emitted date accessors (for detecting midnight date changes) |
| 1677 | |
| 1678 | export function getLastEmittedDate(): string | null { |
| 1679 | return STATE.lastEmittedDate |
| 1680 | } |
| 1681 | |
| 1682 | export function setLastEmittedDate(date: string | null): void { |
| 1683 | STATE.lastEmittedDate = date |
no outgoing calls
no test coverage detected