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

Function lowerFirst

scripts/codegen/go.ts:262–265  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

260}
261
262function lowerFirst(value: string): string {
263 if (value.length === 0) return value;
264 return value.charAt(0).toLowerCase() + value.slice(1);
265}
266
267function goMethodDocSummary(methodName: string, method: RpcMethod, fallbackVerb = "calls"): string {
268 const description = method.description?.trim();

Callers 1

goMethodDocSummaryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…