Liquex.Filter.downcase
You're seeing just the function
downcase
, go back to Liquex.Filter module for more information.
Makes each character in a string lowercase. It has no effect on strings which are already all lowercase.
Examples
iex> Liquex.Filter.downcase("Parker Moore", %{})
"parker moore"
iex> Liquex.Filter.downcase("apple", %{})
"apple"