(text)
| 729 | } |
| 730 | |
| 731 | function extractFirstPath(text) { |
| 732 | const match = String(text || '').match(/\/(?:[^\s`*]|\\ )+/); |
| 733 | return match ? match[0].replace(/\\ /g, ' ') : ''; |
| 734 | } |
| 735 | |
| 736 | function parseMarkdownSections(text) { |
| 737 | const lines = String(text || '').split(/\r?\n/); |
no outgoing calls
no test coverage detected