method

downcase_first

v7.2.3 - Show latest stable - Class: String
downcase_first()
public

Converts the first character to lowercase.

'If they enjoyed The Matrix'.downcase_first # => "if they enjoyed The Matrix"
'I'.downcase_first                          # => "i"
''.downcase_first                           # => ""

See ActiveSupport::Inflector.downcase_first.