Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
chickencurry
Advanced tools
Add some chickencurry to your functions
Library to curry a function. It supports auto rurrying, currying a number of arguments, placeholders and partial applications.
npm install chickencurry
var curry = require('chickencurry');
function add(a, b) {
return a + b;
}
var add1 = curry(add)(1);
add1(3); // => 4
add1(4); // => 5
::
(ES2015)var curry = require('./');
var add1 = function(a, b) {
return a + b;
}::curry(1);
add1(3); // => 4
add1(4); // => 5
var sub = function(a, b) {
return a - b;
}::curry();
sub(3)(1); // => 2
var curryN = require('chickencurry/N');
function join() {
return Array.prototype.slice.call(arguments).join(',');
}
curryN(join, 3)(1)(2)(3) // => '1,2,3'
var curry1 = require('chickencurry/1');
var curry2 = require('chickencurry/2');
var curry3 = require('chickencurry/3');
curry1(join)(1) // => '1'
curry2(join)(1)(2) // => '1,2'
curry3(join)(1)(2)(3) // => '1,2,3'
var curryN = require('chickencurry/N');
function join() {
return Array.prototype.slice.call(arguments).join(',');
}
curryN(join, 3, 'Fish', 'Chicken')('...'); // => 'Fish,Chicken,...')
curryN(join, 3)('Fish', 'Chicken')('...'); // => 'Fish,Chicken,...')
You can curry a function using placeholders, if you want to set the i.e 3rd argument.
function join(a, b, sep) {
return a + sep + b;
};
var __ = require('chickencurry/__');
var join_ = curry(join, __, __, '_');
// or var join_ = curry(join, undefined, undefined, '_');
join_('chicken', 'curry'); // => 'chicken_curry'
var joinCurry = curry(join);
var joinDash = joinCurry(__, __, '-');
joinDash('chicken', 'curry'); // => 'chicken-curry'
FAQs
Add some chicken curry to your functions
We found that chickencurry demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.