Kitchen Sink
Module to make improvements to the Elixir Standard API. This module should follow Elixir guidelines, and we should consider everything in these files as able to be patched into mainstream Elixir. This is a good place to adopt APIs from other languages or frameworks (Ramda, Clojure, Elm, Haskell, etc…)
Installation
If available in Hex, the package can be installed as:
-
Add
kitchen_sinkto your list of dependencies inmix.exs:
```elixir
def deps do
[{:kitchen_sink, "~> 1.2.0"}]
end
```-
Ensure
kitchen_sinkis started before your application:
```elixir
def application do
[applications: [:kitchen_sink]]
end
```