Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 | 1x 248x | /** Can be used to filter non empty values from a collection while adhering to typescript
* strict null checks.
*/
export function notEmpty<T>(value: T | null | undefined): value is T {
return value !== null && value !== undefined;
}
|