Bump to v4.7.0.

This commit is contained in:
John-David Dalton
2016-03-26 00:00:36 -07:00
parent a83b4ebd53
commit ce0b51888c
394 changed files with 1789 additions and 841 deletions

17
_getAllKeysIn.js Normal file
View File

@@ -0,0 +1,17 @@
import baseGetAllKeys from './_baseGetAllKeys';
import getSymbolsIn from './_getSymbolsIn';
import keysIn from './keysIn';
/**
* 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.
*/
function getAllKeysIn(object) {
return baseGetAllKeys(object, keysIn, getSymbolsIn);
}
export default getAllKeysIn;