Liquex.Filter.prepend

You're seeing just the function prepend, go back to Liquex.Filter module for more information.
Link to this function

prepend(value, prepender, _)

View Source

Adds the specified string to the beginning of another string.

Examples

iex> Liquex.Filter.prepend("apples, oranges, and bananas", "Some fruit: ", %{})
"Some fruit: apples, oranges, and bananas"

iex> Liquex.Filter.prepend("/index.html", "example.com", %{})
"example.com/index.html"