element-plus/packages/utils-v2/types.ts
2022-02-09 16:59:08 +08:00

21 lines
475 B
TypeScript

import { isArray, isObject } from '@vue/shared'
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)