(author: string)
| 1 | function parseUserFromEmail(author: string): string | undefined { |
| 2 | return /<(?:\d+\+)?(?<username>[^<>@]+)@users\.noreply\.github\.com>/i.exec(author)?.groups?.username; |
| 3 | } |
| 4 | |
| 5 | export default function cleanCommitMessage( |
| 6 | message: string, |
no outgoing calls
no test coverage detected