(s)
| 140 | } |
| 141 | |
| 142 | function stripMd(s) { |
| 143 | return String(s) |
| 144 | .replace(/[*_`~]+/g, "") |
| 145 | .replace(/^\s*#+\s*/, "") |
| 146 | .replace(/\s+/g, " ") |
| 147 | .trim(); |
| 148 | } |
| 149 | |
| 150 | // Infer a status from inline markers / emojis in a line of text. |
| 151 | function statusFromText(text) { |
no outgoing calls
no test coverage detected