00001 00009 function baseHasIn(object, key) { 00010 return object != null && key in Object(object); 00011 } 00012 00013 module.exports = baseHasIn;