()
| 656 | test('More checking that arguments objects are handled correctly', () => { |
| 657 | // eslint-disable-next-line func-style |
| 658 | const returnArguments = function() { return arguments; }; |
| 659 | |
| 660 | const someArgs = returnArguments('a'); |
| 661 | const sameArgs = returnArguments('a'); |
no outgoing calls
no test coverage detected
searching dependent graphs…