* Creates an array of the own enumerable property names of `object`. * * **Note:** Non-object values are coerced to objects. See the * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) * for more details. * * @static * @since 0.1.0 * @memb
(object)
| 21025 | * // => ['0', '1'] |
| 21026 | */ |
| 21027 | function keys(object) { |
| 21028 | return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object); |
| 21029 | } |
| 21030 | |
| 21031 | /** |
| 21032 | * Creates an array of the own and inherited enumerable property names of `object`. |
no test coverage detected