String.toLowerCase
toLowerCase($options={}) -> string
Description
Convert all characters to lower case.
If $options
is -first
, then only convert the first character to lower case.
'ABC XYZ-123'.toLowerCase() //= 'abc xyz-123' 'ABC XYZ-123'.toLowerCase(-first) //= 'aBC XYZ-123'