fnc-args
Get a function's arguments in JS
Install
npm i fnc-argsUse
const fncArgs = require('fnc-args')
fncArgs((hey, hi) => {}) // ['hey', 'hi']
fncArgs(function (hey, hi) {}) // ['hey', 'hi']
fncArgs(async (hey, hi) => {}) // ['hey', 'hi']
fncArgs(hey => {}) // ['hey']