I tried like this and it works for an object with one property:
var foo = { foo: { foo: { foo: function(){ return x }}}};
function flattenObj(obj) {
var res;
for (var k in obj) {
res = obj[k];
while (k in res) {
res = res[k];
}
}
return res;
}
console.log(flattenObj(foo)); // function(){ return x }
How can I make it work with this object?
{ baz: 'baz', foo: { baz: 'baz', foo: function(){ return x }}};
So it returns:
{ baz: 'baz', foo: function(){ return x }}
Edit:
var obj = {
a: 1,
b: 2,
obj: {
a: 1,
b: 2,
obj: {
a: 1,
b: 2,
obj: function(){ return x }
}
}
}
The demo.