|
|
@ -207,7 +207,7 @@ |
|
|
|
|
|
|
|
|
|
|
|
function traverse (parent, path) { |
|
|
|
function traverse (parent, path) { |
|
|
|
BI.each(parent, function (i, child) { |
|
|
|
BI.each(parent, function (i, child) { |
|
|
|
const childPath = path.concat(i); |
|
|
|
var childPath = path.concat(i); |
|
|
|
if (BI.isArray(child)) { |
|
|
|
if (BI.isArray(child)) { |
|
|
|
traverse(child, childPath); |
|
|
|
traverse(child, childPath); |
|
|
|
} else if (BI.isPlainObject(child)) { |
|
|
|
} else if (BI.isPlainObject(child)) { |
|
|
|