(line: string)
| 1412 | } |
| 1413 | |
| 1414 | function isNearMissHeading(line: string): boolean { |
| 1415 | return /^\*\*(When to use|When To Use|Details|Gotchas).*\*\*/.test(line) && |
| 1416 | !standardHeadings.includes(line as StandardHeading) |
| 1417 | } |
| 1418 | |
| 1419 | function isBoldOnlyLine(line: string): boolean { |
| 1420 | return /^\*\*[^*]+\*\*(?:\s*)$/.test(line) |
no outgoing calls
no test coverage detected