Created
August 1, 2017 18:48
-
-
Save joshrotenberg/3246c2cff3da976a6209d13f5a58c578 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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