get-func-parameters
v1.0.0
Published
get the function parameters
Downloads
10
Maintainers
Readme
get-func-parameters
获取函数形参个数。 Obtaining the number of function parameters.
install
npm install --save get-func-parameters
use
const getFuncParameters = require('get-func-parameters');
function func(a,b,c,d){
return a+b*c*d
}
//参数 functionName
getFuncParameters(func);
// 输出 =>
["a", "b", "c", "d"]