(a: string[], b: string[])
| 350 | } |
| 351 | |
| 352 | function arrayEqual(a: string[], b: string[]): boolean { |
| 353 | return a.length === b.length && a.every((value, idx) => value === b[idx]); |
| 354 | } |
| 355 | |
| 356 | export const hermesTarget: AgentTarget = new HermesTarget(); |
no outgoing calls
no test coverage detected