8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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]
The last example is incorrect
The text was updated successfully, but these errors were encountered:
Update wrong example
0044ca6
Issue: lodash/lodash#5911 Website: https://lodash.com/docs/4.17.15#curry Before: [1, 3, 2] Now: [1, 2, 3]
No branches or pull requests
https://lodash.com/docs/4.17.15#curry
The last example is incorrect
The text was updated successfully, but these errors were encountered: