mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 10:07:48 +00:00
Bump to v4.16.5.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import baseForRight from './_baseForRight.js';
|
||||
import baseIteratee from './_baseIteratee.js';
|
||||
import castFunction from './_castFunction.js';
|
||||
import keysIn from './keysIn.js';
|
||||
|
||||
/**
|
||||
@@ -31,7 +31,7 @@ import keysIn from './keysIn.js';
|
||||
function forInRight(object, iteratee) {
|
||||
return object == null
|
||||
? object
|
||||
: baseForRight(object, baseIteratee(iteratee, 3), keysIn);
|
||||
: baseForRight(object, castFunction(iteratee), keysIn);
|
||||
}
|
||||
|
||||
export default forInRight;
|
||||
|
||||
Reference in New Issue
Block a user