Current section

Files

Jump to
zxcvbn lib zxcvbn message_formatter.ex
Raw

lib/zxcvbn/message_formatter.ex

defmodule ZXCVBN.MessageFormatter do
def format(str), do: apply(formatter(), :format, [str])
defp formatter do
Application.get_env(:zxcvbn, :message_formatter, ZXCVBN.DefaultMessageFormatter)
end
end