Bump to v4.16.5.

This commit is contained in:
John-David Dalton
2016-10-30 20:12:25 -07:00
parent 39e2b943dc
commit a3710bba34
116 changed files with 710 additions and 706 deletions

View File

@@ -1,5 +1,5 @@
var baseForOwn = require('./_baseForOwn'),
baseIteratee = require('./_baseIteratee');
castFunction = require('./_castFunction');
/**
* Iterates over own enumerable string keyed properties of an object and
@@ -30,7 +30,7 @@ var baseForOwn = require('./_baseForOwn'),
* // => Logs 'a' then 'b' (iteration order is not guaranteed).
*/
function forOwn(object, iteratee) {
return object && baseForOwn(object, baseIteratee(iteratee, 3));
return object && baseForOwn(object, castFunction(iteratee));
}
module.exports = forOwn;