artdaq_node_server  v1_00_09
 All Classes Namespaces Files Variables Pages
forOwnRight.js
1 var baseForOwnRight = require('./_baseForOwnRight'),
2  castFunction = require('./_castFunction');
3 
30 function forOwnRight(object, iteratee) {
31  return object && baseForOwnRight(object, castFunction(iteratee));
32 }
33 
34 module.exports = forOwnRight;