(comment: Comment)
| 33 | } |
| 34 | |
| 35 | function hasInlineCommentLocation(comment: Comment): boolean { |
| 36 | return ( |
| 37 | Boolean(comment.file) && |
| 38 | comment.line != null && |
| 39 | Number.isInteger(comment.line) && |
| 40 | comment.line > 0 |
| 41 | ); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Parse GitHub PR string |
no outgoing calls
no test coverage detected
searching dependent graphs…