mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 15:31:52 +00:00
config redirect
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
import baseGetAllKeys from './_baseGetAllKeys.js';
|
||||
import getSymbols from './_getSymbols.js';
|
||||
import keys from './keys.js';
|
||||
|
||||
/**
|
||||
* Creates an array of own 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.
|
||||
*/
|
||||
function getAllKeys(object) {
|
||||
return baseGetAllKeys(object, keys, getSymbols);
|
||||
}
|
||||
|
||||
export default getAllKeys;
|
||||
Reference in New Issue
Block a user