mirror of
https://github.com/foomo/gotsrpc.git
synced 2025-10-16 12:35:35 +00:00
21 lines
325 B
JavaScript
21 lines
325 B
JavaScript
var foo = {
|
|
people: {
|
|
bla: {
|
|
audi: {
|
|
color: "white",
|
|
wheels: 1
|
|
}
|
|
}
|
|
},
|
|
cars: {
|
|
audi: {
|
|
color: "white",
|
|
wheels: 1
|
|
},
|
|
blas: {
|
|
color: "red",
|
|
wheels: 23.1
|
|
}
|
|
}
|
|
};
|