* Check if two command arrays match exactly
(a: string[], b: string[])
| 147 | * Check if two command arrays match exactly |
| 148 | */ |
| 149 | function commandArraysMatch(a: string[], b: string[]): boolean { |
| 150 | if (a.length !== b.length) { |
| 151 | return false |
| 152 | } |
| 153 | return a.every((val, idx) => val === b[idx]) |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Extract URL from server config (remote servers only) |
no outgoing calls
no test coverage detected