Liquex.Filter.lstrip
You're seeing just the function
lstrip
, go back to Liquex.Filter module for more information.
Specs
lstrip(String.t(), Liquex.Context.t()) :: String.t()
Removes all whitespace (tabs, spaces, and newlines) from the left side of a string. It does not affect spaces between words.
Examples
iex> Liquex.Filter.lstrip(" So much room for activities! ", %{})
"So much room for activities! "