xmlify
Version:
JavaScript/JSON/MongoDb/Mongoose to XML conversion
25 lines (24 loc) • 452 B
JSON
{
"firstName": "John",
"lastName": "Smith",
"age": 25,
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021"
},
"phoneNumbers": [
{
"_type": "home",
"_": "212 555-1234"
},
{
"_type": "fax",
"_": "646 555-4567"
}
],
"gender": {
"type": "male"
}
}