2 3 4 5
# File 'lib/moo/core_ext/string.rb', line 2 def uncapitalize return '' if empty? self[0, 1].downcase + self[1..-1] end