Skip to content

Instantly share code, notes, and snippets.

@joshrotenberg
Created August 1, 2017 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshrotenberg/3246c2cff3da976a6209d13f5a58c578 to your computer and use it in GitHub Desktop.
Save joshrotenberg/3246c2cff3da976a6209d13f5a58c578 to your computer and use it in GitHub Desktop.
defmacro is_loaded_module(module) do
quote do
case Code.ensure_loaded(unquote(module)) do
{:module, module_name} -> true
_ -> false
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment