mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 15:57:48 +00:00
27 lines
660 B
JavaScript
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
|