Current section
Files
Jump to
Current section
Files
lib/exfavicon.ex
defmodule Exfavicon do
@doc """
Finder and detector.
"""
defdelegate find(url), to: Exfavicon.Finder, as: :find
defdelegate find_from_html(url, html), to: Exfavicon.Finder, as: :find_from_html
defdelegate valid_favicon_url?(url), to: Exfavicon.Finder, as: :valid_favicon_url?
end