(text, partials)
| 58 | } |
| 59 | |
| 60 | function resolvePartials(text, partials) { |
| 61 | return text.replace(/\{\{>\s*([\w-]+)\s*\}\}/g, (match, name) => { |
| 62 | return partials.has(name) ? partials.get(name) : match |
| 63 | }) |
| 64 | } |
| 65 | |
| 66 | function extractMethodDocs(helper, helperName, config, testsPath, partials) { |
| 67 | const result = new Map() |
no test coverage detected