项目作者: planswell

项目描述 :
Elixir Stdlib Extensions
高级语言: Elixir
项目地址: git://github.com/planswell/kitchen-sink.git
创建时间: 2016-09-12T16:00:22Z
项目社区:https://github.com/planswell/kitchen-sink

开源协议:

下载


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:

    1. def deps do
    2. [{:kitchen_sink, "~> 1.2.0"}]
    3. end
  2. Ensure kitchen_sink is started before your application:

    1. def application do
    2. [applications: [:kitchen_sink]]
    3. end