es-arguments
v1.0.2
Published
Get the argument names of any es method
Downloads
4,958
Maintainers
Readme
ES Arguments
Description
Get the argument names of any es method.
Usage
npm install es-arguments
const getArguments = require('es-arguments')
getArguments(function (arg1, arg2) {}) // ['arg1', 'arg2']
getArguments(function (arg1=1, arg2=2) {}) // ['arg1', 'arg2']
getArguments(function ({ arg1, arg2 }) {}) // ['{ arg1, arg2 }']
getArguments(function (args = { arg1, arg2 }) {}) // ['args']
getArguments((arg1, arg2) => {}) // ['arg1', 'arg2']