curri

WebJar for curri

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

curri
Last Version

Last Version

1.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

curri
WebJar for curri
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/GianlucaGuarini/curri

Download curri

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/curri/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>curri</artifactId>
    <version>1.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/curri/
implementation 'org.webjars.npm:curri:1.0.1'
// https://jarcasting.com/artifacts/org.webjars.npm/curri/
implementation ("org.webjars.npm:curri:1.0.1")
'org.webjars.npm:curri:jar:1.0.1'
<dependency org="org.webjars.npm" name="curri" rev="1.0.1">
  <artifact name="curri" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='curri', version='1.0.1')
)
libraryDependencies += "org.webjars.npm" % "curri" % "1.0.1"
[org.webjars.npm/curri "1.0.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

curri

curri.js

curri in some Italian 🇮🇹 dialects means run

Build Status

NPM version NPM downloads MIT License

Usage

import curry from 'curri'

const add = (a, b) => a + b
const add3 = curry(add)(3)

console.log(add3(5)) // 8

API

curry

Function to curry any javascript method

Parameters

  • fn Function the target function we want to curry
  • acc ...[args] initial arguments

Returns (Function | any) it will return a function until the target function will receive all of its arguments

Versions

Version
1.0.1