planswell / kitchen-sink

Elixir Stdlib Extensions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

This package is available in Hex and can be installed this way:

  1. Add kitchen_sink to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:kitchen_sink, "~> 1.2.0"}]
end
```
  1. Ensure kitchen_sink is started before your application:
```elixir
def application do
  [applications: [:kitchen_sink]]
end
```

About

Elixir Stdlib Extensions


Languages

Language:Elixir 100.0%