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

30 lines
643 B
Markdown
Raw Permalink 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; [mustCoalesce](./js-utils.mustcoalesce.md)
## mustCoalesce() function
> Warning: This API is now obsolete.
>
2022-10-08 19:52:35 +00:00
> use `mustDefault` instead
>
2020-03-29 13:43:52 +00:00
Return the first value that is not nil.
2020-03-29 13:43:52 +00:00
<b>Signature:</b>
```typescript
export declare function mustCoalesce<T>(...values: Array<Maybe<T>>): T;
2020-03-29 13:43:52 +00:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| values | Array&lt;[Maybe](./js-utils.maybe.md)<!-- -->&lt;T&gt;&gt; | |
2020-03-29 13:43:52 +00:00
<b>Returns:</b>
T
2020-03-29 13:43:52 +00:00