nodejs函数到包含函数代码的字符串

时间:2013-04-03 17:09:08

标签: javascript node.js

我对nodejs真的很陌生。 有没有办法将函数内容转换为字符串? 有点像,如果我有:

function() {
    ....
}

我想要“function(){....}”。

这样的事情可能吗?

1 个答案:

答案 0 :(得分:6)

函数已经有toString()方法......所以只需要(function() {}).toString()

例如,在节点REPL中:

> (function() { console.log("hello"); }).toString()
'function () { console.log("hello"); }'

这是指向某些documentation的链接。