mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-21 15:09:32 +02:00
Fix: indentation fix
This commit is contained in:
@@ -48,7 +48,7 @@ const convertObjectToXml = (
|
||||
value.forEach((item) => {
|
||||
xml += `${getIndentation(options, depth)}<${keyString}>${newline}`;
|
||||
xml += convertObjectToXml(item, options, depth + 1);
|
||||
xml += `</${keyString}>${newline}`;
|
||||
xml += `${getIndentation(options, depth)}</${keyString}>${newline}`;
|
||||
});
|
||||
} else if (value === null) {
|
||||
xml += `${getIndentation(
|
||||
|
Reference in New Issue
Block a user