Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
chickencurry
Advanced tools
Add some chickencurry to your functions
npm install chickencurry
var curry = require('chickencurry');
function add(a, b) {
return a + b;
}
var add1 = curry(add, 1);
var add12 = curry(add, 1, 2);
add1(3); // => 4
add12(); // => 3
You can curry a function and define the arguments for the curryied functions later.
function add(a, b) {
return a + b;
}
var curryiedAdd = curry(add); // no arguments passed to curry
var add1 = curryiedAdd(1);
var add2 = curryiedAdd(2);
add1(3); // => 4
add2(3); // => 5
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 __ = curry.__;
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'
If you want to curry a method of an object you have to bind the scope to the function.
var obj = {
name: 'stoeffel',
myFunc: function(arg) {
return arg + this.name;
}
};
var myFunc = curry(obj.myFunc.bind(obj), 'Hello ');
myFunc(); // => 'Hello stoeffel'
FAQs
Add some chicken curry to your functions
The npm package chickencurry receives a total of 667 weekly downloads. As such, chickencurry popularity was classified as not popular.
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.