(arr: { length: number; [i: number]: any })
| 41 | arr.reduce((acc, buf) => acc + bufToString(buf), '') |
| 42 | |
| 43 | export const getLast = <T>(arr: { length: number; [i: number]: any }): T => |
| 44 | arr[arr.length - 1] |
| 45 | |
| 46 | export function preferLocalBin( |
| 47 | env: NodeJS.ProcessEnv, |
no outgoing calls
no test coverage detected
searching dependent graphs…