(schema: JsonSchema, root: JsonSchema)
| 176 | }; |
| 177 | |
| 178 | const isExpandable = (schema: JsonSchema, root: JsonSchema): boolean => |
| 179 | getChildCount(schema, root) > 0; |
| 180 | |
| 181 | // --------------------------------------------------------------------------- |
| 182 | // Merge allOf |
no test coverage detected