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