#28 parselayers方法修改

This commit is contained in:
YHH
2020-08-13 22:23:02 +08:00
parent 4290a10d5d
commit 9111b69cee
8 changed files with 73 additions and 48 deletions

View File

@@ -16,4 +16,13 @@ class ObjectUtils {
}
return c;
}
public static elements(p: {}){
let c = [];
for (let i in p){
c.push(p[i]);
}
return c;
}
}