()
| 214 | } |
| 215 | |
| 216 | export function isOwnConversation(): boolean { |
| 217 | return getConversationAuthor() === getLoggedInUser(); |
| 218 | } |
| 219 | |
| 220 | export function assertCommitHash(hash: string): void { |
| 221 | if (!/^[0-9a-f]{40}$/.test(hash)) { |
nothing calls this directly
no test coverage detected