(arr)
| 49 | console.log(argv); |
| 50 | |
| 51 | function isArrayOfNumbers(arr) { |
| 52 | return Array.isArray(arr) && arr.every(n => typeof n === 'number'); |
| 53 | } |
| 54 | |
| 55 | // NOTE: ".parse()" should only be used at top level, not inside builder functions. |
no outgoing calls
no test coverage detected
searching dependent graphs…