(url)
| 65 | } |
| 66 | |
| 67 | function removeRootTree(url) { |
| 68 | const rootUrl = url.endsWith("/") ? url : `${url}/`; |
| 69 | Object.keys(filesTree).forEach((key) => { |
| 70 | if (key === url || key.startsWith(rootUrl)) { |
| 71 | delete filesTree[key]; |
| 72 | } |
| 73 | }); |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Refresh file list |
no outgoing calls
no test coverage detected