MCPcopy Index your code
hub / github.com/angular/angular / isArray

Function isArray

packages/forms/signals/src/util/type_guards.ts:12–14  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

10 * A version of `Array.isArray` that handles narrowing of readonly arrays properly.
11 */
12export function isArray(value: unknown): value is any[] | readonly any[] {
13 return Array.isArray(value);
14}
15
16/**
17 * Checks if a value is an object.

Callers 11

isContainerNodeFunction · 0.90
extractChildrenFunction · 0.90
submitFunction · 0.90
setSubmissionErrorsFunction · 0.90
computeMethod · 0.90
valueForWriteFunction · 0.90
getFunction · 0.90
FieldNodeContextClass · 0.90
computeChildrenMapFunction · 0.90
normalizeErrorsFunction · 0.90
addDefaultFieldFunction · 0.90

Calls 1

isArrayMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…