()
| 69 | } |
| 70 | |
| 71 | |
| 72 | // --- Homepage Status Badges --- |
| 73 | const HOMEPAGE_STATUS_BADGE_CACHE = new Map(); |
| 74 | |
| 75 | function homepageBadgeToday() { |
| 76 | const d = new Date(); |
| 77 | d.setHours(0, 0, 0, 0); |
| 78 | return d; |
| 79 | } |
| 80 | |
| 81 | function homepageBadgeDate(value) { |
| 82 | if (!value) return null; |
no outgoing calls
no test coverage detected