Packages

Elixir implementation of X-Diff Plus

Current section

Files

Jump to
xdiff_plus lib xtree util.ex
Raw

lib/xtree/util.ex

defmodule Xtree.Util do
def hash(str) when is_binary(str) do
:crypto.hash(:md5, str) |> Base.encode16()
end
end