From 1cb18dfada50388b142cea0b17645d70782b2736 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 21 Nov 2018 10:23:00 -0600 Subject: [PATCH] Revert "Ensure _.pick paths aren't interpolated twice. [closes #3952]" This reverts commit 39a7eae40d7b97921bca466ccb65969f0cc49332. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index e281de4ea..1d606f5e6 100644 --- a/lodash.js +++ b/lodash.js @@ -3745,7 +3745,7 @@ */ function basePick(object, paths) { return basePickBy(object, paths, function(value, path) { - return hasIn(object, [path]); + return hasIn(object, path); }); }