2020-03-29 13:43:52 +00:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [@apextoaster/js-utils](./js-utils.md) > [mustCoalesce](./js-utils.mustcoalesce.md)
|
|
|
|
|
|
|
|
## mustCoalesce() function
|
|
|
|
|
|
|
|
Return the first value that is not nil.
|
|
|
|
|
2020-03-31 13:49:18 +00:00
|
|
|
@<!-- -->todo: rename to mustDefault
|
2020-03-31 02:31:51 +00:00
|
|
|
|
2020-03-29 13:43:52 +00:00
|
|
|
<b>Signature:</b>
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
export declare function mustCoalesce<T>(...values: Array<Optional<T>>): T;
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
|
|
|
| values | <code>Array<Optional<T>></code> | |
|
|
|
|
|
|
|
|
<b>Returns:</b>
|
|
|
|
|
|
|
|
`T`
|
|
|
|
|