Files
lodash/.internal/baseKeys.js
2017-03-21 22:23:03 -07:00

27 lines
660 B
JavaScript

import isPrototype from './isPrototype.js'
/** Used to check objects for own properties. */
const hasOwnProperty = Object.prototype.hasOwnProperty
/**
* The base implementation of `keys` which doesn't treat sparse arrays as dense.
*
* @private
* @param {Object} object The object to query.
* @returns {Array} Returns the array of property names.
*/
function baseKeys(object) {
if (!isPrototype(object)) {
return Object.keys(Object(object))
}
const result = []
for (const key in Object(object)) {
if (hasOwnProperty.call(object, key) && key != 'constructor') {
result.push(key)
}
}
return result
}
export default baseKeys