mirror of
https://github.com/luxfi/explore.git
synced 2026-07-27 05:54:15 +00:00
4 lines
144 B
TypeScript
4 lines
144 B
TypeScript
export default function notEmpty<TValue>(value: TValue | null | undefined): value is TValue {
|
|
return value !== null && value !== undefined;
|
|
}
|