I'm receiving objects structured like this example:
{name: "Example", fruit.apples: true, "soil.tree.leaf": "nature" }
I need a function that can converted it to this:
{name: "Example", fruit: { apples: true }, soil: { tree: { leaf: "nature" }}}