* Creates an array of function property names from own enumerable properties * of `object`. * * @static * @since 0.1.0 * @memberOf _ * @category Object * @param {Object} object The object to inspect. * @returns {Array} Returns the function names. * @see _
(object)
| 13167 | * // => ['a', 'b'] |
| 13168 | */ |
| 13169 | function functions(object) { |
| 13170 | return object == null ? [] : baseFunctions(object, keys(object)); |
| 13171 | } |
| 13172 | |
| 13173 | /** |
| 13174 | * Creates an array of function property names from own and inherited |
nothing calls this directly
no test coverage detected