12345678910111213141516171819202122232425262728293031323334 |
- var baseForOwnRight = require('./_baseForOwnRight'),
- castFunction = require('./_castFunction');
- function forOwnRight(object, iteratee) {
- return object && baseForOwnRight(object, castFunction(iteratee));
- }
- module.exports = forOwnRight;
|