@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
11 lines • 415 B
JavaScript
/**
* The XSLTApply function receives the XSLT file path, and applies it to a string variable or XML file variable.
* @param {string} xmlString
* @param {string} xsltString
* @return string
*/
import { xsltProcess, xmlParse } from "xslt-processor";
export const xsltApply = (xmlString, xsltString) => {
return xsltProcess(xmlParse(xmlString), xmlParse(xsltString));
};
//# sourceMappingURL=xsltApply.js.map