Combine um objeto em uma string usando regex
// "{a:42,b:{c:{d:{e:43}}}}" to match an object that is a string
/.((?:\{[^}]*\}))/
Envious Echidna
// "{a:42,b:{c:{d:{e:43}}}}" to match an object that is a string
/.((?:\{[^}]*\}))/