aboutsummaryrefslogtreecommitdiff
path: root/node_modules/lodash/_basePick.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/lodash/_basePick.js')
-rw-r--r--node_modules/lodash/_basePick.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/node_modules/lodash/_basePick.js b/node_modules/lodash/_basePick.js
index 6afce4041..09b458a60 100644
--- a/node_modules/lodash/_basePick.js
+++ b/node_modules/lodash/_basePick.js
@@ -11,7 +11,6 @@ var basePickBy = require('./_basePickBy'),
* @returns {Object} Returns the new object.
*/
function basePick(object, paths) {
- object = Object(object);
return basePickBy(object, paths, function(value, path) {
return hasIn(object, path);
});