@avejidah/get-parameter-names
v0.3.2
Published
Retrieves parameter names from a function
Downloads
519
Maintainers
Readme
get-parameter-names
Retrieves the argument names of a function
Install
npm install get-parameter-names
Usage
function foo(bar, baz) {
return bar + baz
}
var get = require('get-parameter-names')
get(foo) // = ['bar', 'baz']
Tests
npm test