FontAwesome v4.0.0 FontAwesome.Utils
A module that provides utility functions.
Summary
Functions
Prefixes the given binary or list.
Examples
iex> FontAwesome.Utils.css_prefix(nil)
"fa"
iex> FontAwesome.Utils.css_prefix("custom")
"fa-custom"
iex> FontAwesome.Utils.css_prefix(["custom", "key"])
"fa-custom-key"
iex> FontAwesome.Utils.css_prefix(["custom", nil, "key"])
"fa-custom-key"