Bump to v4.16.5.

This commit is contained in:
John-David Dalton
2016-10-30 20:08:19 -07:00
parent 6778141728
commit be1e9a3170
113 changed files with 277 additions and 335 deletions

View File

@@ -1,5 +1,5 @@
import baseFor from './_baseFor.js';
import baseIteratee from './_baseIteratee.js';
import castFunction from './_castFunction.js';
import keysIn from './keysIn.js';
/**
@@ -33,7 +33,7 @@ import keysIn from './keysIn.js';
function forIn(object, iteratee) {
return object == null
? object
: baseFor(object, baseIteratee(iteratee, 3), keysIn);
: baseFor(object, castFunction(iteratee), keysIn);
}
export default forIn;