MCPcopy Index your code
hub / github.com/coder/mux / isUnknownArray

Function isUnknownArray

src/node/orpc/formatOrpcError.ts:34–36  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

32}
33
34function isUnknownArray(value: unknown): value is readonly unknown[] {
35 return Array.isArray(value);
36}
37
38function isPlainObject(value: unknown): value is Record<string, unknown> {
39 if (!isRecord(value)) {

Callers 1

getValidationErrorInfoFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected