Stringify

Brings Ruby style inspect and Javascript style stringify to elixir

Installation

If available in Hex, the package can be installed as:

  1. Add stringify to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:stringify, "~> 0.1.0"}]
end
```

Usage

The following are available for stringifying arbitrary objects

  iex> m = %{"a" => 1, "b" => 2, "c" => 3}
  iex> IO.puts "m is #{:i.i m}"
  m is %{"a" => 1, "b" => 2, "c" => 3}