MCPcopy
hub / github.com/cli/cli / camelCase

Function camelCase

pkg/cmd/project/shared/queries/queries.go:1794–1802  ·  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

1792
1793// camelCase converts a string to camelCase, which is useful for turning Go field names to JSON keys.
1794func camelCase(s string) string {
1795 if len(s) == 0 {
1796 return ""
1797 }
1798 if len(s) == 1 {
1799 return strings.ToLower(s)
1800 }
1801 return strings.ToLower(s[0:1]) + s[1:]
1802}
1803
1804type exportable interface {
1805 ExportData([]string) map[string]interface{}

Callers 2

TestCamelCaseFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestCamelCaseFunction · 0.68