Bump to v4.17.2.

This commit is contained in:
John-David Dalton
2016-11-15 22:22:55 -08:00
parent 95f47b6d19
commit 035ce4f44c
9 changed files with 16 additions and 35 deletions

View File

@@ -1,5 +1,6 @@
import baseGet from './_baseGet.js';
import baseSet from './_baseSet.js';
import castPath from './_castPath.js';
/**
* The base implementation of `_.pickBy` without support for iteratee shorthands.
@@ -20,7 +21,7 @@ function basePickBy(object, paths, predicate) {
value = baseGet(object, path);
if (predicate(value, path)) {
baseSet(result, path, value);
baseSet(result, castPath(path, object), value);
}
}
return result;