mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
7b166ed7fd
- Implement TooltipV2Trigger - Implement TooltipV2Root - Fix a potential mem leak issue in OnlyChild - Add token for tooltip v2
31 lines
754 B
TypeScript
31 lines
754 B
TypeScript
import { isArray, isObject } from '@vue/shared'
|
|
import { isNil } from 'lodash-unified'
|
|
|
|
export {
|
|
isArray,
|
|
isFunction,
|
|
isObject,
|
|
isString,
|
|
isDate,
|
|
isPromise,
|
|
isSymbol,
|
|
} from '@vue/shared'
|
|
export { isBoolean, isNumber } from '@vueuse/core'
|
|
export { isVNode } from 'vue'
|
|
|
|
export const isUndefined = (val: any): val is undefined => val === undefined
|
|
|
|
export const isEmpty = (val: unknown) =>
|
|
(!val && val !== 0) ||
|
|
(isArray(val) && val.length === 0) ||
|
|
(isObject(val) && !Object.keys(val).length)
|
|
|
|
export const isElement = (e: unknown): e is Element => {
|
|
if (typeof Element === 'undefined') return false
|
|
return e instanceof Element
|
|
}
|
|
|
|
export const isPropAbsent = (prop: unknown): prop is null | undefined => {
|
|
return isNil(prop)
|
|
}
|