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

25 lines
626 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; [entriesOf](./js-utils.entriesof.md)
## entriesOf() function
Get entries of a map-like.
2020-03-29 13:43:52 +00:00
<b>Signature:</b>
```typescript
export declare function entriesOf<TVal>(map: Maybe<MapLike<TVal>>): Array<[string, TVal]>;
2020-03-29 13:43:52 +00:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| map | [Maybe](./js-utils.maybe.md)<!-- -->&lt;[MapLike](./js-utils.maplike.md)<!-- -->&lt;TVal&gt;&gt; | |
2020-03-29 13:43:52 +00:00
<b>Returns:</b>
Array&lt;\[string, TVal\]&gt;
2020-03-29 13:43:52 +00:00