(filePath: string)
| 163 | ); |
| 164 | |
| 165 | export const readXmlLike = (filePath: string) => { |
| 166 | const content = hfs.text(filePath); |
| 167 | |
| 168 | return { |
| 169 | root: parseHtml(content), |
| 170 | formatOptions: { indent: detectIndent(content) }, |
| 171 | }; |
| 172 | }; |
| 173 | |
| 174 | export const writeXmlLike = async ( |
| 175 | filePath: string, |
no outgoing calls
no test coverage detected
searching dependent graphs…