(instancePath: string, schema: JsonSchema)
| 34 | export const errorAt = (instancePath: string, schema: JsonSchema) => |
| 35 | getErrorsAt(instancePath, schema, (path) => path === instancePath); |
| 36 | export const subErrorsAt = (instancePath: string, schema: JsonSchema) => |
| 37 | getErrorsAt(instancePath, schema, (path) => |
| 38 | path.startsWith(instancePath + '.') |
| 39 | ); |
| 40 | |
| 41 | export const getErrorAt = |
| 42 | (instancePath: string, schema: JsonSchema) => (state: JsonFormsState) => { |
no test coverage detected
searching dependent graphs…