MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / arrayEqual

Function arrayEqual

src/installer/targets/hermes.ts:352–354  ·  view source on GitHub ↗
(a: string[], b: string[])

Source from the content-addressed store, hash-verified

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

Callers 1

upsertCodeGraphMcpServerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected