Skip to content

isArray

@tsed/core

Usage

typescript
import { isArray } from "@tsed/core";

See /packages/core/src/utils/isArray.ts.

Overview

ts
function isArray<T = any>(target: unknown): target is T[];

Description

Checks if a value is an array.

Released under the MIT License.