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.

16 lines
453 B

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