(...args)
| 20 | } |
| 21 | |
| 22 | function usingRestAndApply(...args) { |
| 23 | format.apply(null, args); |
| 24 | } |
| 25 | |
| 26 | function usingArgumentsAndApply() { |
| 27 | format.apply(null, arguments); |
nothing calls this directly
no test coverage detected
searching dependent graphs…