MCPcopy Index your code
hub / github.com/github/copilot-sdk / normalizeSchemaBrandCasing

Function normalizeSchemaBrandCasing

scripts/codegen/utils.ts:129–132  ·  view source on GitHub ↗
(schema: T)

Source from the content-addressed store, hash-verified

127 * mutated in place and also returned for convenience.
128 */
129export function normalizeSchemaBrandCasing<T>(schema: T): T {
130 normalizeBrandCasingNode(schema);
131 return schema;
132}
133
134function normalizeBrandCasingNode(node: unknown): void {
135 if (Array.isArray(node)) {

Callers 2

generateFunction · 0.70
loadSchemaJsonFunction · 0.70

Calls 1

normalizeBrandCasingNodeFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…