MCPcopy Create free account
hub / github.com/Zoo-Code-Org/Zoo-Code / areStringArraysEqual

Function areStringArraysEqual

apps/cli/src/commands/cli/stdin-stream.ts:212–224  ·  view source on GitHub ↗
(a: string[], b: string[])

Source from the content-addressed store, hash-verified

210}
211
212function areStringArraysEqual(a: string[], b: string[]): boolean {
213 if (a.length !== b.length) {
214 return false
215 }
216
217 for (let i = 0; i < a.length; i++) {
218 if (a[i] !== b[i]) {
219 return false
220 }
221 }
222
223 return true
224}
225
226// ---------------------------------------------------------------------------
227// Orchestrator

Callers 1

onExtensionMessageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected