curryable

decorate a function so it will curry if not given enough arguments

Usage no npm install needed!

<script type="module">
  import curryable from 'https://cdn.skypack.dev/curryable';
</script>

README

curryable

decorate a function so it will curry if not given enough arguments. See why curry helps for a good explanation of the concept.

Installation

With component, packin or npm

$ {package mananger} install jkroso/curryable

then in your app:

var curryable = require('curryable')

API

curryable(fn:function)

make fn curryable

var add = curryable(function(a, b){
    return a + b
})
var add1 = add(1)
add1(1) == add(1, 1) == 2 // => true

Running the tests

Just run make. It will install and start a development server leaving the tests waiting for you at