normalizeArray
export declare function normalizeArray<T>(arr: RestOrArray<T>): T[];
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.
Name | Constraints | Optional | Default | Description |
---|---|---|---|---|
T | No | The data that must satisfy RestOrArray. |
Name | Type | Optional | Description |
---|---|---|---|
arr | RestOrArray<T> | No | The (possibly variadic) data to normalize |