Skip to content

Instantly share code, notes, and snippets.

@alkasm
Created August 26, 2019 06:32
Show Gist options
  • Save alkasm/9a27e5d3bdced0e8179d6d78442ff6ec to your computer and use it in GitHub Desktop.
Save alkasm/9a27e5d3bdced0e8179d6d78442ff6ec to your computer and use it in GitHub Desktop.
# Level 0
{"asdf": {"a": [1, 2, 3], "b": 500}, "qwerty": {"a": [4, 5, 6], "b": 1000}}
# Level 1
{
"asdf": {"a": [1, 2, 3], "b": 500},
"qwerty": {"a": [4, 5, 6], "b": 1000}
}
# Level 2
{
"asdf": {
"a": [1, 2, 3],
"b": 500
},
"qwerty": {
"a": [4, 5, 6],
"b": 1000
}
}
# Level 3+
{
"asdf": {
"a": [
1,
2,
3
],
"b": 500
},
"qwerty": {
"a": [
4,
5,
6
],
"b": 1000
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment