(comment: Record<string, unknown> | undefined)
| 14846 | } |
| 14847 | |
| 14848 | function commentUrl(comment: Record<string, unknown> | undefined): string | null { |
| 14849 | const url = comment?.html_url; |
| 14850 | return typeof url === "string" ? url : null; |
| 14851 | } |
| 14852 | |
| 14853 | function commentBody(comment: Record<string, unknown> | undefined): string | undefined { |
| 14854 | const body = comment?.body; |
no outgoing calls
no test coverage detected