(pointerSegment: string)
| 95 | * Decodes a given JSON Pointer segment to its "normal" representation |
| 96 | */ |
| 97 | export const decode = (pointerSegment: string) => |
| 98 | pointerSegment?.replace(/~1/g, '/').replace(/~0/, '~'); |
| 99 | |
| 100 | /** |
| 101 | * Transform a dotted path to a uiSchema properties path |
no outgoing calls
no test coverage detected
searching dependent graphs…