@byteagenten/ason
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

ASON

Array Object Notation

Size comparison

JSON

{
    "Firstname": "Matthias",
    "Lastname": "Knoop",
    "ContactData": {
        "Mobile": "0171 616293567",
        "Email": "matthias.knoop@byteagenten.de",
        "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",
        "matthias.knoop@byteagenten.de",
        [
            "Zur Wallburg 12", 
            "97655 Eltmann",
            "Germany"
        ]
    ],
    [1972, 10, 2],
    ["Kochen", "Reisen", "Autos", "Essen", "Grillen", "Filme"]
    
]

Readme

Keywords

none

Package Sidebar

Install

npm i @byteagenten/ason

Weekly Downloads

1

Version

0.0.1

License

ISC

Unpacked Size

9.58 kB

Total Files

10

Last publish

Collaborators

  • mknoop71