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 baseForRight = require('./_baseForRight'),
baseIteratee = require('./_baseIteratee'),
castFunction = require('./_castFunction'),
keysIn = require('./keysIn');
/**
@@ -31,7 +31,7 @@ var baseForRight = require('./_baseForRight'),
function forInRight(object, iteratee) {
return object == null
? object
: baseForRight(object, baseIteratee(iteratee, 3), keysIn);
: baseForRight(object, castFunction(iteratee), keysIn);
}
module.exports = forInRight;