# File lib/core/facets/string/uppercase.rb, line 17
  def lowercase
    str = to_s
    str[0,1].downcase + str[1..-1]
  end