Skip to content

Instantly share code, notes, and snippets.

@rashidkpc
Last active March 28, 2017 22:31
Show Gist options
  • Save rashidkpc/f54b54064914b3d69bf3221d930df74f to your computer and use it in GitHub Desktop.
Save rashidkpc/f54b54064914b3d69bf3221d930df74f to your computer and use it in GitHub Desktop.
{
"type": "Program",
"body": [
{
"type": "IfStatement",
"test": {
"type": "Identifier",
"name": "blah"
},
"consequent": {
"type": "BlockStatement",
"body": [
{
"type": "ReturnStatement",
"argument": {
"type": "Literal",
"value": false
}
}
]
},
"alternate": {
"type": "BlockStatement",
"body": [
{
"type": "ReturnStatement",
"argument": {
"type": "Literal",
"value": true
}
}
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment