Contains helper functions for other modules
Creates a path string from list of values
path([String.t]) :: String.t
Creates a path string from list of values.
to_string is call on the list of values so they must implement the String.Chars protocol.
to_string
iex> Elastex.Helper.path(["hello", "world", 1]) "hello/world/1"