mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 23:55:20 +00:00
9 lines
205 B
TypeScript
9 lines
205 B
TypeScript
import { jsXml } from 'json-xml-parse';
|
|
|
|
/**
|
|
* This function converts an object to XML.
|
|
*/
|
|
export function json2xml(data: Record<string, any>) {
|
|
return jsXml.toXmlString(data, { beautify: true });
|
|
}
|