earthtone / tiny-curry

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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. 🤷‍♂️

License:MIT License


Languages

Language:JavaScript 100.0%