https://github.com/yurkimus/curry
Javascript curry utility
https://github.com/yurkimus/curry
deno functional-programming javascript node utilities
Last synced: 12 months ago
JSON representation
Javascript curry utility
- Host: GitHub
- URL: https://github.com/yurkimus/curry
- Owner: yurkimus
- License: mit
- Created: 2024-08-12T20:14:51.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-18T21:02:20.000Z (over 1 year ago)
- Last Synced: 2025-05-15T01:46:31.337Z (about 1 year ago)
- Topics: deno, functional-programming, javascript, node, utilities
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Curry
JavaScript curry utility.
## Table of Contents
- [Installation](#installation)
- [Exports](#exports)
- [curry](#curry)
- [License](#license)
## Installation
### npm
```
npm install @yurkimus/curry
```
### urls
```
"@yurkimus/curry": "npm:@yurkimus/curry"
```
```
"@yurkimus/curry": "github:yurkimus/curry"
```
```
"@yurkimus/curry": "https://raw.githubusercontent.com/yurkimus/curry/main/source/index.js"
```
## Exports
### curry
#### Definition:
```
curry :: Function -> Number -> Function
```
#### Example:
```javascript
curry(
// predicate, no need to specify length unless using variadic function parameters
(a, b) => a + b,
)(1)(2) // => 3
curry(
// predicate
(a, ...numbers) => a + numbers.reduce((x, a) => x + a, 0),
// specified length to handle variadic function parameters
2,
)(1)(2, 3) // => 6
```
## License
[MIT](LICENSE)