(path: string)
| 103 | * @return the uiSchema properties path (i.e. /properties/articles/properties/comment/properties/author) |
| 104 | */ |
| 105 | export const getPropPath = (path: string): string => { |
| 106 | return `/properties/${path |
| 107 | .split('.') |
| 108 | .map((p) => encode(p)) |
| 109 | .join('/properties/')}`; |
| 110 | }; |
no test coverage detected
searching dependent graphs…