(p)
| 192 | // 'last-focused'. |
| 193 | function makeDefaultRouteForDirectory(path) { |
| 194 | function depth(p) { return p === '/' ? 0 : (p.match(/\//g) || []).length; } |
| 195 | |
| 196 | // find all direct children |
| 197 | let entries = Object.keys(Routes) |
no outgoing calls
no test coverage detected