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

Method ToUpper

stringy.go:375–378  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

373// ToUpper makes all string of user input to uppercase
374// it can be chained on function which return StringManipulation interface
375func (i *input) ToUpper() string {
376 input := getInput(*i)
377 return strings.ToUpper(input)
378}
379
380// UcFirst makes first word of user input to uppercase
381// it can be chained on function which return StringManipulation interface

Callers

nothing calls this directly

Calls 2

getInputFunction · 0.85
ToUpperMethod · 0.65

Tested by

no test coverage detected