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

27 lines
795 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; [setOrPush](./js-utils.setorpush.md)
## setOrPush() function
Set a map key to a new array or push to the existing value.
<b>Signature:</b>
```typescript
export declare function setOrPush<TKey, TVal>(map: Map<TKey, Array<TVal>>, key: TKey, val: TVal | Array<TVal>): void;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2020-03-31 13:54:31 +00:00
| map | <code>Map&lt;TKey, Array&lt;TVal&gt;&gt;</code> | The destination map and source of existing values. |
| key | <code>TKey</code> | The key to get and set. |
| val | <code>TVal &#124; Array&lt;TVal&gt;</code> | The value to add. |
2020-03-29 13:43:52 +00:00
<b>Returns:</b>
`void`