functions
最后更新于:2022-04-02 00:05:01
## functions
+ [link](./functions "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L11117 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.functions "See the npm package.")
```
_.functions(object)
```
返回一个 function 对象自身可枚举属性名的数组。
### 参数
1. object (Object)
要检索的对象
### 返回值 (Array)
返回包含属性名的新数组
### 示例
```
function Foo() {
this.a = _.constant('a');
this.b = _.constant('b');
}
Foo.prototype.c = _.constant('c');
_.functions(new Foo);
// => ['a', 'b']
```
';