summaryrefslogtreecommitdiffstats
path: root/src/server/utils/isDefined.ts
blob: fe42bdfb50c7f3aab7b889cd661a868b7e4b9dec (plain) (blame)
1
2
3
export default function isDefined<T>(val: T | undefined | null): val is T {
	return val !== undefined && val !== null;
}