(value: string)
| 58 | } |
| 59 | |
| 60 | function formatYamlValue(value: string): string { |
| 61 | const escaped = value.replace(/\\/g, "\\\\").replace(/"/g, '\\"'); |
| 62 | return `"${escaped}"`; |
| 63 | } |
| 64 | |
| 65 | function createHeading( |
| 66 | depth: number, |
no outgoing calls
no test coverage detected
searching dependent graphs…