Skip to content

Files

Latest commit

ec3a89b · Jan 23, 2017

History

History

js2xmlparser

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jan 21, 2017
Jan 21, 2017
Jan 21, 2017
Jan 23, 2017

js2xmlparser

Tested out js2xmlparser,this package make xml string from object. xml = js2xmlparser.parse('rootname', object);

Example:

const object = { field1: 'value', field2: 'value' }; console.log(js2xmlparser.parse('body', object));