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