(schemaPath: string)
| 81 | * @returns {string} the data path |
| 82 | */ |
| 83 | export const toDataPath = (schemaPath: string): string => { |
| 84 | return toDataPathSegments(schemaPath).join('.'); |
| 85 | }; |
| 86 | |
| 87 | /** |
| 88 | * Encodes the given segment to be used as part of a JSON Pointer |
no test coverage detected
searching dependent graphs…