00001 var baseForOwnRight = require('./_baseForOwnRight'),
00002 castFunction = require('./_castFunction');
00003
00030 function forOwnRight(object, iteratee) {
00031 return object && baseForOwnRight(object, castFunction(iteratee));
00032 }
00033
00034 module.exports = forOwnRight;