UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

10 lines (9 loc) 311 B
export default getAllKeysIn; /** * Creates an array of own and inherited enumerable property names and symbols of `object`. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the array of property names and symbols. */ declare function getAllKeysIn(object: any): any[];