zhengyiming
4 天以前 cbcc6a8eecfc19e93da08500dcc898efdabf7836
1
2
3
export function isDef<T = unknown>(val?: T): val is T {
  return typeof val !== 'undefined';
}