Skip to content

xslt transformation is a library for transformation of xml string or xml in base64 to xslt encoded.

Notifications You must be signed in to change notification settings

maticapuano/xslt-processor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Xslt transformation

xslt transformation is a library for transformation of xml string or xml in base64 to xslt encoded.

Installation

Use the package manager NPM.

npm install

or using yarn

yarn install

Usage

npm run test

or

yarn test
import { getStringOriginal } from ".";
import { xmlString } from "./constant/xmlString";

//Example for xml string
getStringOriginal(xmlString).then((data) => console.log(`XML STRING: ${data}`));

//Example for xml string base64
getStringOriginal(xmlString, true).then((data) =>
  console.log(`BASE64: ${data}`)
);

License

MIT

Author: Matías Capuano

About

xslt transformation is a library for transformation of xml string or xml in base64 to xslt encoded.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published