فهرست منبع

Make hasValue helper a type guard

Danilo Bargen 6 سال پیش
والد
کامیت
baadffcc9d
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/helpers.ts

+ 1 - 1
src/helpers.ts

@@ -328,7 +328,7 @@ export function logAdapter(logFunc: (...msg: string[]) => void, logTag: string):
 /**
  * Return whether a value is not null and not undefined.
  */
-export function hasValue(val: any): boolean {
+export function hasValue<T>(val?: T | null): val is T {
     return val !== null && val !== undefined;
 }