We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b461654 commit 327f46dCopy full SHA for 327f46d
src/utils.ts
@@ -92,7 +92,6 @@ type SchemEntry = [string, JSONSchema];
92
export const sortEntriesByKey = ([key1]: SchemEntry, [key2]: SchemEntry): -1 | 1 => key1 > key2 ? -1 : 1;
93
94
export function combineSchemas(s: JSONSchema[]): JSONSchemaObject {
95
- console.log('COMBINING SCHEMAS');
96
let combinedDefinitions: { [k: string]: JSONSchema } = {};
97
98
s.forEach((schema) => {
0 commit comments