(list: FileGlobList)
| 63 | return result.values.sort((a, b) => a.compiledPath.length - b.compiledPath.length); |
| 64 | }; |
| 65 | const gatherSmNames = async (list: FileGlobList) => { |
| 66 | const result = await gatherSm(list); |
| 67 | return result.map(r => fixDriveLetterAndSlashes(r.compiledPath)); |
| 68 | }; |
| 69 | |
| 70 | const gatherAll = (list: FileGlobList) => { |
| 71 | return r.streamAllChildren(list, m => m).then(r => r.sort()); |
no test coverage detected