Revert "Ensure _.pick paths aren't interpolated twice. [closes #3952]"

This reverts commit 39a7eae40d.
This commit is contained in:
John-David Dalton
2018-11-21 10:23:00 -06:00
parent 39a7eae40d
commit 1cb18dfada

View File

@@ -3745,7 +3745,7 @@
*/
function basePick(object, paths) {
return basePickBy(object, paths, function(value, path) {
return hasIn(object, [path]);
return hasIn(object, path);
});
}