OnFlow.Util.trim_0x

You're seeing just the function trim_0x, go back to OnFlow.Util module for more information.

Specs

trim_0x(String.t()) :: String.t()

Trims "0x" off the given string.

iex> trim_0x("")
""

iex> trim_0x("666f6f")
"666f6f"

iex> trim_0x("0x666f6f")
"666f6f"

iex> trim_0x("0X666f6f")
"666f6f"