标签: node.js
有没有办法在Node.js中看到函数签名?我知道fn.toString()但不想要所有的代码,只需要签名。
fn.toString()
答案 0 :(得分:2)
var source = fn.toString(); var signature = source.substring(0, source.indexOf('{') - 1);
可能是你得到的最接近的;对于原生方法,请回到fn.length。
fn.length