Expand a dot notated string object into a regular object.
Example
const doc = { "nested.obj.is": "full", "nested.num": 3, "tgt.0": 1, "tgt.1": 2, }; const expanded = expandObj(doc); console.log(expanded); // { // nested: { // obj: { // is: "full", // }, // num: 3, // }, // tgt: [1, 2], // }
Generated using TypeDoc
Expand a dot notated string object into a regular object.
Example
const doc = { "nested.obj.is": "full", "nested.num": 3, "tgt.0": 1, "tgt.1": 2, }; const expanded = expandObj(doc); console.log(expanded); // { // nested: { // obj: { // is: "full", // }, // num: 3, // }, // tgt: [1, 2], // }