@byteagenten/ason
v0.0.1
Published
### Size comparison
Downloads
2
Readme
ASON
Array Object Notation
Size comparison
JSON
{
"Firstname": "Matthias",
"Lastname": "Knoop",
"ContactData": {
"Mobile": "0171 616293567",
"Email": "[email protected]",
"Adress": {
"Street": "Zur Wallburg 12",
"City": "97655 Eltmann",
"Country": "Germany"
},
"DateOfBirth": {
"Year": 1972,
"Month": 10,
"Day": 2
},
"Hobbies": ["Kochen", "Reisen", "Autos", "Essen", "Grillen", "Filme"]
}
}
AON
[
"Matthias",
"Knoop",
[
"0171 616293567",
"[email protected]",
[
"Zur Wallburg 12",
"97655 Eltmann",
"Germany"
]
],
[1972, 10, 2],
["Kochen", "Reisen", "Autos", "Essen", "Grillen", "Filme"]
]