basant307/AI_Governance_Project
048
1import isObject from './isObject.js';2import isPrototype from './_isPrototype.js';3import nativeKeysIn from './_nativeKeysIn.js';4 5/** Used for built-in method references. */6var objectProto = Object.prototype;7 8/** Used to check objects for own properties. */9var hasOwnProperty = objectProto.hasOwnProperty;10 11/**12 * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.13 *14 * @private15 * @param {Object} object The object to query.16 * @returns {Array} Returns the array of property names.17 */18function baseKeysIn(object) {19 if (!isObject(object)) {20 return nativeKeysIn(object);21 }22 var isProto = isPrototype(object),23 result = [];24 25 for (var key in object) {26 if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {27 result.push(key);28 }29 }30 return result;31}32 33export default baseKeysIn;34 