1
0
Fork 0
js-utils/docs/api/js-utils.makedict.md

25 lines
642 B
Markdown
Raw Normal View History

2020-03-29 13:43:52 +00:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [@apextoaster/js-utils](./js-utils.md) &gt; [makeDict](./js-utils.makedict.md)
## makeDict() function
Turns a map or dict into a dict
<b>Signature:</b>
```typescript
export declare function makeDict<TVal>(map: Optional<MapLike<TVal>>): Dict<TVal>;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| map | [Optional](./js-utils.optional.md)<!-- -->&lt;[MapLike](./js-utils.maplike.md)<!-- -->&lt;TVal&gt;&gt; | |
2020-03-29 13:43:52 +00:00
<b>Returns:</b>
[Dict](./js-utils.dict.md)<!-- -->&lt;TVal&gt;
2020-03-29 13:43:52 +00:00