wupengfei
2025-11-13 f251855688664c719801a535221df5876208fdbc
1
2
3
export function isDef<T = unknown>(val?: T): val is T {
  return typeof val !== 'undefined';
}