590 B
590 B
Home > @apextoaster/js-utils > mustGet
mustGet() function
Get an element from a Map and guard against nil values.
Signature:
export declare function mustGet<TKey, TVal>(map: Map<TKey, TVal>, key: TKey): TVal;
Parameters
Parameter | Type | Description |
---|---|---|
map | Map<TKey, TVal> |
|
key | TKey |
Returns:
TVal