Open
Description
https://lodash.com/docs/4.17.15#curry
var abc = function(a, b, c) {
return [a, b, c];
};
var curried = _.curry(abc);
curried(1)(2)(3);
// => [1, 2, 3]
curried(1, 2)(3);
// => [1, 2, 3]
curried(1, 2, 3);
// => [1, 2, 3]
// Curried with placeholders.
curried(1)(_, 3)(2);
// => [1, 3, 2]
Hi, I see the issue in lodash repository, But Still Wrong Output in the document for curry function
Metadata
Metadata
Assignees
Labels
No labels