✌️
This commit is contained in:
parent
fed04ef5ae
commit
17263fb459
2 changed files with 124 additions and 87 deletions
|
|
@ -228,6 +228,7 @@ abstract class Chart<T> {
|
|||
*/
|
||||
const dive = (x: Obj, path?: string) => {
|
||||
Object.entries(x).forEach(([k, v]) => {
|
||||
const p = path ? `${path}.${k}` : k;
|
||||
if (typeof v == 'object') {
|
||||
dive(v, p);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue