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 baseForOwnRight = require('./_baseForOwnRight'),
baseIteratee = require('./_baseIteratee');
castFunction = require('./_castFunction');
/**
* This method is like `_.forOwn` except that it iterates over properties of
@@ -28,7 +28,7 @@ var baseForOwnRight = require('./_baseForOwnRight'),
* // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'.
*/
function forOwnRight(object, iteratee) {
return object && baseForOwnRight(object, baseIteratee(iteratee, 3));
return object && baseForOwnRight(object, castFunction(iteratee));
}
module.exports = forOwnRight;