mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-31 20:36:21 +00:00
3807ab1b63
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
7 lines
158 B
Elixir
7 lines
158 B
Elixir
defmodule Mobilizon.Service.Guards do
|
|
@moduledoc """
|
|
Various guards
|
|
"""
|
|
|
|
defguard is_nil_or_empty_string(value) when is_nil(value) or value == ""
|
|
end
|