function normalizeArray

export declare function normalizeArray<T>(arr: RestOrArray<T>): T[];

Normalizes data that is a rest parameter or an array into an array with a depth of 1.

Type Parameters

T

The data that must satisfy RestOrArray.

Parameters

arr: RestOrArray<T>
The (possibly variadic) data to normalize