Files
omnibot/lib/util.ex
2020-06-12 17:29:35 -04:00

6 lines
148 B
Elixir

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