converts string names to objects
obj | object | object with key-value pairs |
object | some complex data object |
var obj = { "user.some.key" : 123 };
var res = webix.CodeParser.expandNames(obj);
// res = { user: { some: { key: 123 } } };
Back to top