(section, subsection, name)
| 116 | } |
| 117 | |
| 118 | const getPath = (section, subsection, name) => { |
| 119 | return [lower(section), subsection, lower(name)] |
| 120 | .filter(a => a != null) |
| 121 | .join('.') |
| 122 | } |
| 123 | |
| 124 | const normalizePath = path => { |
| 125 | const pathSegments = path.split('.') |
no test coverage detected
searching dependent graphs…