(path: string[])
| 19 | </div>` |
| 20 | |
| 21 | function path2field(path: string[]) { |
| 22 | return [ |
| 23 | path.join(''), |
| 24 | path.map((p) => p.length).join('_'), |
| 25 | path.length |
| 26 | ].join('_'); |
| 27 | } |
| 28 | |
| 29 | function field2path(field: string) { |
| 30 | let parts = field.split('_'); |
no outgoing calls
no test coverage detected
searching dependent graphs…