Current section

Files

Jump to
pdf_generator lib pdf_generator random.ex
Raw

lib/pdf_generator/random.ex

defmodule PdfGenerator.Random do
@chars "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" |> String.codepoints()
def string(length \\ 8) do
Enum.map_join(1..length, fn _ -> Enum.random(@chars) end)
end
end