UNPKG

element-plus

Version:

A Component Library for Vue 3

26 lines (23 loc) 858 B
import { isArray, isObject, isString } from '@vue/shared'; export { isArray, isDate, isFunction, isObject, isPromise, isString, isSymbol } from '@vue/shared'; import { isNil } from 'lodash-unified'; export { isBoolean, isNumber } from '@vueuse/core'; export { isVNode } from 'vue'; const isUndefined = (val) => val === void 0; const isEmpty = (val) => !val && val !== 0 || isArray(val) && val.length === 0 || isObject(val) && !Object.keys(val).length; const isElement = (e) => { if (typeof Element === "undefined") return false; return e instanceof Element; }; const isPropAbsent = (prop) => { return isNil(prop); }; const isStringNumber = (val) => { if (!isString(val)) { return false; } return !Number.isNaN(Number(val)); }; export { isElement, isEmpty, isPropAbsent, isStringNumber, isUndefined }; //# sourceMappingURL=types.mjs.map