MCPcopy Create free account
hub / github.com/gobeam/stringy / ToLower

Method ToLower

stringy.go:357–360  ·  view source on GitHub ↗

ToLower makes all string of user input to lowercase it can be chained on function which return StringManipulation interface

()

Source from the content-addressed store, hash-verified

355// ToLower makes all string of user input to lowercase
356// it can be chained on function which return StringManipulation interface
357func (i *input) ToLower() (result string) {
358 input := getInput(*i)
359 return strings.ToLower(input)
360}
361
362// Title makes first letter of each word of user input to uppercase
363// it can be chained on function which return StringManipulation interface

Callers

nothing calls this directly

Calls 2

getInputFunction · 0.85
ToLowerMethod · 0.65

Tested by

no test coverage detected