(node: unknown)
| 1463 | const isPlainObject = (node: unknown): node is Record<string, any> => |
| 1464 | typeof node === "object" && node !== null && !Array.isArray(node) |
| 1465 | const hasCombiner = (node: unknown) => |
| 1466 | isPlainObject(node) && (Array.isArray(node.anyOf) || Array.isArray(node.oneOf) || Array.isArray(node.allOf)) |
| 1467 | const hasSchemaIntent = (node: unknown) => { |
| 1468 | if (!isPlainObject(node)) return false |
| 1469 | if (hasCombiner(node)) return true |
no test coverage detected