12345678910111213141516171819202122232425262728293031323334 |
- import baseForOwnRight from './_baseForOwnRight.js';
- import castFunction from './_castFunction.js';
- function forOwnRight(object, iteratee) {
- return object && baseForOwnRight(object, castFunction(iteratee));
- }
- export default forOwnRight;
|