Skip to content
This repository has been archived by the owner on Sep 5, 2021. It is now read-only.

earthtone/tiny-curry

Repository files navigation

Tiny Curry

CI Status

A javascript curry function. That's it. Nothing else.


Basic Usage

import curry from '@earthtone/tiny-curry'

const get = curry((prop, obj) => obj[prop])
const getFirstName = get('first_name')

const result = getFirstName({
  first_name: 'Wally'
  last_name: 'West'
})

console.log(result) // -> 'Wally'

About

A JavaScript curry function. That's it. Nothing else. 🤷‍♂️

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published