4b747d50fa2b747de5546171b937e8631fcc17fa
[yaffs-website] / node_modules / grunt-legacy-log-utils / node_modules / lodash / _baseKeys.js
1 /* Built-in method references for those with the same name as other `lodash` methods. */
2 var nativeKeys = Object.keys;
3
4 /**
5  * The base implementation of `_.keys` which doesn't skip the constructor
6  * property of prototypes or treat sparse arrays as dense.
7  *
8  * @private
9  * @type Function
10  * @param {Object} object The object to query.
11  * @returns {Array} Returns the array of property names.
12  */
13 function baseKeys(object) {
14   return nativeKeys(Object(object));
15 }
16
17 module.exports = baseKeys;