UNPKG

airbridge-react-native-sdk

Version:

Airbridge SDK for React Native

10 lines (8 loc) 258 B
import { check } from './check' export const compute = { defined: <Value, Result> ( value: Value, block: (value: Exclude<Value, undefined>) => Result ): Result | undefined => ( check.defined(value) ? block(value) : undefined ) }