mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-05-05 20:29:26 +00:00
4 lines
92 B
TypeScript
4 lines
92 B
TypeScript
|
|
export function isDefined<T>(value: T | undefined): value is T {
|
||
|
|
return Boolean(value);
|
||
|
|
}
|