Is there any equivalent of python's inspect.getargspec in javascript/node.js?

205 Views Asked by At

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']
1

There are 1 best solutions below

0
On BEST ANSWER

If you're using Node and want the argument names, check out the introspect NPM module:

> var introspect = require('introspect')
> var f = (a, b, c) => console.log(a, b, c);
> console.log(introspect(f))
[ 'a', 'b', 'c' ]