Current section
Files
Jump to
Current section
Files
lib/skeleton/utils/utils.ex
defmodule MapSchema.Utils do
@moduledoc false
@doc """
The module have the utils functions.
Take list of fields and build a full name.
"""
def get_field_name(lista_fields) do
lista_fields |> Enum.join("_")
end
end