UNPKG

react-native-sortables

Version:

Powerful Sortable Components for Flexible Content Reordering in React Native

7 lines (5 loc) 173 B
import type { Maybe } from '../helperTypes'; export const isPresent = <V>(value: Maybe<V>): value is V => { 'worklet'; return value !== undefined && value !== null; };