curry-named-args
Version:
curryNamed is a JavaScript utility that turns any function that receives a single object parameter into a variadic curried version of that function
36 lines (35 loc) • 731 B
JSON
{
"name": "curry-named-args",
"version": "0.2.1",
"main": "./dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FedeIII/curry-named-args"
},
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && babel ./src -d ./dist --ignore test.js",
"test": "jest"
},
"author": "fedelll@gmail.com",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.6.0",
"jest": "^23.6.0"
},
"files": [
"dist"
],
"keywords": [
"curry",
"currying",
"named-arguments",
"utilities",
"fp",
"functional programming"
]
}