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