(message: string, position: number)
| 101 | } |
| 102 | |
| 103 | function getMode(message: string, position: number) { |
| 104 | return isMentionMode(message, position) ? Mode.Mention : Mode.Standard; |
| 105 | } |
| 106 | |
| 107 | function getMention(message: string, position: number) { |
| 108 | if (isMentionMode(message, position)) { |
no test coverage detected