(value: unknown)
| 3283 | } |
| 3284 | |
| 3285 | function rawCommentBody(value: unknown): string { |
| 3286 | const body = asRecord(value).body; |
| 3287 | return typeof body === "string" ? body : ""; |
| 3288 | } |
| 3289 | |
| 3290 | function timestampValueMs(value: unknown): number { |
| 3291 | return typeof value === "string" ? Date.parse(value) || 0 : 0; |
no test coverage detected