(depth: number, text: string)
| 15264 | return lines.join(pretty ? "\n" : "") |
| 15265 | |
| 15266 | function push(depth: number, text: string): void { |
| 15267 | lines.push(pretty ? indent.repeat(depth) + text : text) |
| 15268 | } |
| 15269 | |
| 15270 | function recur(tagName: string, node: StringTree, depth: number, originalNameForMeta?: string): void { |
| 15271 | const { attrs, safe } = xml.tagInfo(tagName, originalNameForMeta) |