mirror of
https://github.com/woutdp/live_svelte
synced 2026-05-23 17:09:21 +00:00
* add support for custom json library besides jason * use native erlang json encoder * fixed json parsing. added more json tests * Prepare for 0.17.0 release
8 lines
173 B
Elixir
8 lines
173 B
Elixir
defmodule TestJSONLibrary do
|
|
@moduledoc false
|
|
# Mock JSON library for testing custom configuration
|
|
|
|
def encode!(data) do
|
|
"TEST_ENCODED:#{inspect(data)}"
|
|
end
|
|
end
|