* Creates an array of the own and inherited enumerable property names of `object`. * * **Note:** Non-object values are coerced to objects. * * @static * @memberOf _ * @since 3.0.0 * @category Object * @param {Object} object The object to query. * @returns {Array} Returns the array
(object)
| 4140 | * // => ['a', 'b', 'c'] (iteration order is not guaranteed) |
| 4141 | */ |
| 4142 | function keysIn(object) { |
| 4143 | return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object); |
| 4144 | } |
| 4145 | |
| 4146 | module.exports = keysIn; |
| 4147 |
no test coverage detected