Bump to v4.17.2.

This commit is contained in:
John-David Dalton
2016-11-15 22:25:47 -08:00
parent 5585b3ae22
commit db9697dfef
14 changed files with 176 additions and 176 deletions

View File

@@ -1,5 +1,6 @@
var baseGet = require('./_baseGet'),
baseSet = require('./_baseSet');
baseSet = require('./_baseSet'),
castPath = require('./_castPath');
/**
* 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;