I want to get a list of argument names of Function
, for example:
var f = (a, b, c) => console.log(a, b, c);
var [fargs] = something.like.inspect.getargspec(f);
console.log(fargs); // ['a', 'b', 'c']
I want to get a list of argument names of Function
, for example:
var f = (a, b, c) => console.log(a, b, c);
var [fargs] = something.like.inspect.getargspec(f);
console.log(fargs); // ['a', 'b', 'c']
Copyright © 2021 Jogjafile Inc.
If you're using Node and want the argument names, check out the
introspect
NPM module: