UNPKG

91 BPlain TextView Raw
1export function isNotNullish<T>(v: T | null | undefined): v is T {
2 return v != null
3}