var isObject = ,
isPrototype = ,
nativeKeysIn = ;
/** Used for built-in method references. */
var objectProto = ;
/** Used to check objects for own properties. */
var hasOwnProperty = objectProto.;
/**
* The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.
*
* @private
* @param {Object} object The object to query.
* @returns {Array} Returns the array of property names.
*/
module.exports = baseKeysIn;