(args: any[])
| 54 | * optimize arguments to array |
| 55 | */ |
| 56 | export function argumentsToArray(args: any[]) { |
| 57 | const res = new Array(args.length); |
| 58 | for (let i = 0; i < args.length; i++) { |
| 59 | res[i] = args[i]; |
| 60 | } |
| 61 | return res; |
| 62 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…