MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / sameStringArrays

Function sameStringArrays

apps/kimi-code/src/tui/kimi-tui.ts:186–188  ·  view source on GitHub ↗
(a: readonly string[], b: readonly string[])

Source from the content-addressed store, hash-verified

184}
185
186function sameStringArrays(a: readonly string[], b: readonly string[]): boolean {
187 return a.length === b.length && a.every((value, index) => value === b[index]);
188}
189
190type MutableCreateSessionOptions = {
191 -readonly [P in keyof CreateSessionOptions]: CreateSessionOptions[P];

Callers 2

setAppStateMethod · 0.85
syncAdditionalDirsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected