(text)
| 28 | const typeMap = {}; |
| 29 | |
| 30 | function cleanMarkdownText(text) { |
| 31 | return text |
| 32 | .replace(/\\([\[\]])/g, '$1') |
| 33 | .trim(); |
| 34 | } |
| 35 | |
| 36 | function extractDesc(descCell) { |
| 37 | return cleanMarkdownText(descCell.replace(/<!--.*?-->/g, '').trim()); |
no outgoing calls
no test coverage detected