mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-01-03 13:54:38 +00:00
8 lines
158 B
Elixir
8 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
|