...

Source file src/github.com/gobuffalo/flect/lower_upper.go

Documentation: github.com/gobuffalo/flect

     1  package flect
     2  
     3  import "strings"
     4  
     5  // ToUpper is a convience wrapper for strings.ToUpper
     6  func (i Ident) ToUpper() Ident {
     7  	return New(strings.ToUpper(i.Original))
     8  }
     9  
    10  // ToLower is a convience wrapper for strings.ToLower
    11  func (i Ident) ToLower() Ident {
    12  	return New(strings.ToLower(i.Original))
    13  }
    14  

View as plain text