Packages

A exfavicon to detect a site's favicon.

Current section

Files

Jump to
exfavicon lib exfavicon.ex
Raw

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