[Home](./index.md) > [@apextoaster/js-utils](./js-utils.md) > [normalizeMap](./js-utils.normalizemap.md) ## normalizeMap() function > Warning: This API is now obsolete. > > the conversion behavior here was not reliable, better to provide your own `T -> string` mapper > Normalize a map-like of values into a dict of lists of strings. Signature: ```typescript export declare function normalizeMap(map: MapLike): Dict>; ``` ## Parameters | Parameter | Type | Description | | --- | --- | --- | | map | [MapLike](./js-utils.maplike.md)<unknown> | | Returns: [Dict](./js-utils.dict.md)<Array<string>>