The output for the case below is `['']` where it should be `['a']`. ``` js const functionArguments = require('function-arguments'); functionArguments(a => function (){}); // -> [''] but should be ['a'] ```
The output for the case below is
['']where it should be['a'].