3

是否有任何函数可用于列出 node.js 中当前定义的所有函数?我想创建一个这样的函数:

function getAllDefinedFunctions(){
    //return all the functions that are currently defined
}
4

1 回答 1

3

您可以使用for / in循环遍历this(全局对象)中的所有属性并检查是否typeof this[name]'function'.

于 2012-09-11T00:30:12.070 回答