summaryrefslogtreecommitdiffhomepage
path: root/gui/src/shared/utils.ts
blob: 24984e44121510a76fdda15b2b00b7d69923c0be (plain)
1
2
3
export function hasValue<T>(value: T): value is NonNullable<T> {
  return value !== undefined && value !== null;
}