(inputArray: string[])
| 41 | } |
| 42 | |
| 43 | function isValidStringArray(inputArray: string[]): boolean { |
| 44 | if (typeof inputArray[0] === "string") { |
| 45 | return true; |
| 46 | } |
| 47 | return false; |
| 48 | } |
| 49 | |
| 50 | function areArriesWithSameLength(...arrays: any[][]): boolean { |
| 51 | const length = arrays[0].length; |
no outgoing calls
no test coverage detected