# @f/curry-once

> Simple curry function. Just curries once.

Latest version **1.3.2** (published 2016-02-23) · MIT license · 0 weekly downloads

## Install

```sh
npm install @f/curry-once
pnpm add @f/curry-once
yarn add @f/curry-once
bun add @f/curry-once
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.3.2 |
| Published | 2016-02-23 |
| First published | 2015-12-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | f |

## Links

- npm: https://www.npmjs.com/package/@f/curry-once
- Repository: https://github.com/micro-js/curry-once
- Homepage: https://github.com/micro-js/curry-once#readme
- Issues: https://github.com/micro-js/curry-once/issues
- npm.io page: https://npm.io/package/@f/curry-once

## Dependencies (1)

- [@f/slice](https://npm.io/package/@f/slice.md) ^1.1.3

## Recent versions

- 1.3.2 (latest) — 2016-02-23
- 1.3.1 — 2015-12-16
- 1.3.0 — 2015-12-16

## README

# curry-once

[![Build status][travis-image]][travis-url]
[![Git tag][git-image]][git-url]
[![NPM version][npm-image]][npm-url]
[![Code style][standard-image]][standard-url]

Simple curry function.

## Installation

    $ npm install @f/curry-once

## Usage

```js
var curry = require('@f/curry-once')

var add = curry(function (a, b) {
  return a + b
})

var addOne = add(1)
addOne(1) // => 2

```

## API

### curry(fn)

- `fn` - function to curry

**Returns:** curried partial of `fn`

## License

MIT

[travis-image]: https://img.shields.io/travis/micro-js/curry-once.svg?style=flat-square
[travis-url]: https://travis-ci.org/micro-js/curry-once
[git-image]: https://img.shields.io/github/tag/micro-js/curry-once.svg?style=flat-square
[git-url]: https://github.com/micro-js/curry-once
[standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square
[standard-url]: https://github.com/feross/standard
[npm-image]: https://img.shields.io/npm/v/@f/curry-once.svg?style=flat-square
[npm-url]: https://npmjs.org/package/@f/curry-once

---
_Source: https://npm.io/package/@f/curry-once · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
