Retrieves parameter names from a function
npm install get-parameter-names


get-parameter-names
===================
Retrieves the argument names of a function
```
npm install get-parameter-names
`js
function foo(bar, baz) {
return bar + baz
}
var get = require('get-parameter-names')
get(foo) // = ['bar', 'baz']
`
```
npm test