UNPKG

react-native-json-grid-list

Version:

This library will help you create impressive grid lists like these.

6 lines (5 loc) 149 B
export default function notEmpty<TValue>( value: TValue | null | undefined, ): value is TValue { return value !== null && value !== undefined; }