You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
486 B

1 month ago
  1. import baseGetAllKeys from './_baseGetAllKeys.js';
  2. import getSymbolsIn from './_getSymbolsIn.js';
  3. import keysIn from './keysIn.js';
  4. /**
  5. * Creates an array of own and inherited enumerable property names and
  6. * symbols of `object`.
  7. *
  8. * @private
  9. * @param {Object} object The object to query.
  10. * @returns {Array} Returns the array of property names and symbols.
  11. */
  12. function getAllKeysIn(object) {
  13. return baseGetAllKeys(object, keysIn, getSymbolsIn);
  14. }
  15. export default getAllKeysIn;