git ssb

0+

cel-desktop / ssb-pkg



Tree: 8f4b43a09aab9801bf28987edd59c2e366180327

Files: 8f4b43a09aab9801bf28987edd59c2e366180327 / test / test-79-npm / xml2js / xml2js.js

234 bytesRaw
1'use strict';
2
3var parse = require('xml2js').parseString;
4var xml = '<root>Hello xml2js!</root>';
5parse(xml, function (error, result) {
6 if (error) throw error;
7 if (result.root === 'Hello xml2js!') {
8 console.log('ok');
9 }
10});
11

Built with git-ssb-web