(instancePath: string, schema: JsonSchema)
| 32 | }; |
| 33 | |
| 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 + '.') |
no test coverage detected
searching dependent graphs…