Files
music_library/test/support/live_test_helpers.ex
T
2025-01-19 16:14:59 +00:00

8 lines
161 B
Elixir

defmodule MusicLibraryWeb.LiveTestHelpers do
def escape(string) do
string
|> Phoenix.HTML.html_escape()
|> Phoenix.HTML.safe_to_string()
end
end