UNPKG

@qrac/svgstore

Version:

Combines mulitple svg files into one.

17 lines (12 loc) 270 B
/** * Utility method to create an XML document object with a jQuery-like * interface for node manipulation. */ 'use strict'; var cheerio = require('cheerio'); function loadXml(text) { return cheerio.load(text, { xmlMode: true, }); } module.exports = loadXml;