File size: 380 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | var root = {};
(function _(namespace, path, parent) {
for (var i = 0, keys = Object.keys(namespace); i < keys.length; i++) {
var key = keys[i];
console.debug("####", path, path ? true : false)
parent[key] = _(namespace[key], path ? `${path}.${key}` : key, parent[key] || {});
}
return parent;
})({
wrapper: {
data: {
key: {}
},
}
}, "", root);
|