Files
omnibot/lib/util.ex

6 lines
148 B
Elixir
Raw Normal View History

defmodule Omnibot.Util do
def string_empty?(s), do: String.length(s) == 0
def string_or_nil(s), do: if(string_empty?(s), do: nil, else: s)
end