mirror of
https://github.com/logos-messaging/logos-delivery-js.git
synced 2026-03-14 21:53:30 +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);
|
||
|
|
}
|