✨ Site > Add file tree
This commit is contained in:
+3
-3
@@ -128,17 +128,17 @@ class Files
|
||||
describe()
|
||||
{
|
||||
// Set up
|
||||
const result = {}
|
||||
const result = {}
|
||||
|
||||
result.count = this.count
|
||||
result.items = {}
|
||||
result.items = []
|
||||
|
||||
// Each file
|
||||
for(const _filePath in this.items)
|
||||
{
|
||||
const file = this.items[_filePath]
|
||||
|
||||
result.items[_filePath] = file.describe()
|
||||
result.items.push(file.describe())
|
||||
}
|
||||
|
||||
return result
|
||||
|
||||
Reference in New Issue
Block a user