(value: unknown)
| 3292 | } |
| 3293 | |
| 3294 | function commentTimestampMs(value: unknown): number { |
| 3295 | const comment = asRecord(value); |
| 3296 | return timestampValueMs(comment.updated_at) || timestampValueMs(comment.created_at); |
| 3297 | } |
| 3298 | |
| 3299 | function isClawSweeperComment(value: unknown): boolean { |
| 3300 | return CLAWSWEEPER_BOT_AUTHORS.has((login(asRecord(value).user) ?? "").toLowerCase()); |
no test coverage detected