Skip to content

Instantly share code, notes, and snippets.

@KFlash
Created May 6, 2020 11:10
Show Gist options
  • Save KFlash/1d22b52eeb6ab5dae68027d3081a7490 to your computer and use it in GitHub Desktop.
Save KFlash/1d22b52eeb6ab5dae68027d3081a7490 to your computer and use it in GitHub Desktop.
maybe_overkill
(a, [b], {c})
--------------
{
"type": "Script",
"directives": [],
"items": [
{
"type": "ExpressionStatement",
"expression": {
"type": "ParenthesizedExpression",
"expression": {
"type": "CommaOperator",
"items": [
{
"type": "IdentifierReference",
"name": "a"
},
{
"type": "ArrayLiteral",
"elements": [
{
"type": "IdentifierReference",
"name": "b"
}
]
},
{
"type": "ObjectLiteral",
"properties": [
{
"type": "IdentifierReference",
"name": "c"
}
]
}
]
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment