-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
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
Add _.pluckPath #161
Comments
@fogus How are you feeling about dependencies between sublibraries these days? The most natural implementation of |
That's a good question that I don't have a good answer for. I do believe On Saturday, August 30, 2014, Joshua Clanton [email protected]
-- http://github.com/fogus |
Okay. For now, I'll implement dependency-free. But I do believe that there would be a lot of advantages in consolidating everything into a single library that can share more internal code. |
Would this be solved by #175 ? |
@AlphaGit No. The pluckPath method would operate on an array and return a new array consisting of the values found at the given path. Basically map + getPath. |
See jashkenas/underscore#712
This is a natural extension of our existing
_.getPath
method.The text was updated successfully, but these errors were encountered: