pretty-fast-xml
v0.0.1
Published
A library for formatting and minimizing XML
Readme
pretty-fast-xml
A simple XML formatter and minimizer.
Install
npm install pretty-fast-xmlUsage
import { formatXml, formatOptions } from 'pretty-fast-xml';
const options: formatOptions = {
indentSize: 2,
removeComments: false,
};
const rawXml = '<foo></foo>';
const formattedXml = formatXml(rawXml);