mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-14 11:58:33 +05:30
Fix: indentation fix
This commit is contained in:
parent
44f0856ad4
commit
c9f94f5f61
1 changed files with 1 additions and 1 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue