00001 var baseHasIn = require('./_baseHasIn'), 00002 hasPath = require('./_hasPath'); 00003 00030 function hasIn(object, path) { 00031 return object != null && hasPath(object, path, baseHasIn); 00032 } 00033 00034 module.exports = hasIn;