Sandeep Gupta
Sandeep Gupta
var convert = require('xml-js'); console.log(convert.json2xml(JSON.stringify({"name":'john'}))); console.log(convert.js2xml(JSON.stringify({"name":'john'}))); console.log(convert.json2xml({"name":'john'})); console.log(convert.js2xml({"name":'john'})); all are printing ""
Standerted JSON.stringify allows an argument for \t and \n for indentation purposes as follows: ``` JSON.stringify({ uno: 1, dos: 2 }, null, '\t'); // returns the string: // '{ //...
Are project 2, 3 and 4 not pushed? readme gives the impression that they are complete but I couldn't find them in the repo.
tried it a month back and now again. Never worked. I Just get: _Message ********* Starting Getbhavcopy *********_ Atleast provide a helpful error message. Tried in windows 10
Settings can be stored in global and local settings file
``` { fname: "john", lname: "doe" interest_id: [1,2,3,4,5,6] } ``` field can only be used for primitive data (`fname` and `lname`) but is there anything to handle array data (`interest_id`)
I found this library while searching how to load my angular bundles with `defer` attribute. Even async is fine for me. After spending 2+ hours on this library, I have...