MCPcopy Index your code
hub / github.com/coder/coder / areStringArraysEqual

Function areStringArraysEqual

site/src/components/Tabs/utils/useKebabMenu.ts:224–232  ·  view source on GitHub ↗
(
	left: readonly string[],
	right: readonly string[],
)

Source from the content-addressed store, hash-verified

222};
223
224const areStringArraysEqual = (
225 left: readonly string[],
226 right: readonly string[],
227): boolean => {
228 return (
229 left.length === right.length &&
230 left.every((value, index) => value === right[index])
231 );
232};

Callers 1

useKebabMenuFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected