MCPcopy Create free account
hub / github.com/cli/cli / camelCase

Function camelCase

pkg/cmd/project/shared/queries/queries.go:1832–1840  ·  view source on GitHub ↗

camelCase converts a string to camelCase, which is useful for turning Go field names to JSON keys.

(s string)

Source from the content-addressed store, hash-verified

1830
1831// camelCase converts a string to camelCase, which is useful for turning Go field names to JSON keys.
1832func camelCase(s string) string {
1833 if len(s) == 0 {
1834 return ""
1835 }
1836 if len(s) == 1 {
1837 return strings.ToLower(s)
1838 }
1839 return strings.ToLower(s[0:1]) + s[1:]
1840}
1841
1842type exportable interface {
1843 ExportData([]string) map[string]any

Callers 2

TestCamelCaseFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestCamelCaseFunction · 0.68