Files
flights_web_raw/node_modules/@design-systems/utils/dist/utils/arrayify.d.ts
T

11 lines
278 B
TypeScript

/**
* Normalize a value to an array.
*
* @param value - The value to potentially convert to an array
*
* @example
* arrayify('a') // = ['a']
* arrayify(['a']) // = ['a']
*/
export declare const arrayify: <T>(value: T | T[]) => T[];
//# sourceMappingURL=arrayify.d.ts.map