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