mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
4 lines
122 B
TypeScript
4 lines
122 B
TypeScript
|
|
export function isDefined<T>(value: T | null | undefined): value is T {
|
||
|
|
return value !== null && value !== undefined;
|
||
|
|
}
|