UNPKG

@yoroi/common

Version:

The Common package of Yoroi SDK

7 lines (5 loc) 203 B
export const hasValue = <V>(value: V | null | undefined): value is V => value != null export const hasEntryValue = <K, V>( entry: [K, V | null | undefined], ): entry is [K, V] => hasValue(entry[1])