This commit is contained in:
“zouyf” 2024-11-15 16:59:52 +08:00
parent 1f2eb722f1
commit 33287aad57
1 changed files with 4 additions and 1 deletions

View File

@ -127,7 +127,10 @@ export const removePropertyOf = function(obj){
export function removeTree(list) { export function removeTree(list) {
var this_ = this var this_ = this
for (var i in list) { for (var i in list) {
if (list[i].children.length == 0) { if (list[i].children == null) {
delete list[i].children;
}
else if (list[i].children.length == 0) {
list[i].children = undefined list[i].children = undefined
} else { } else {
this_.removeTree(list[i].children) this_.removeTree(list[i].children)