UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

44 lines (38 loc) 1.04 kB
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ import './dep-10a947a6.mjs'; import { _ as _baseGetTag } from './dep-b75d8d74.mjs'; import { i as isArray_1 } from './dep-a95026f2.mjs'; import './dep-068e912d.mjs'; import { i as isObjectLike_1 } from './dep-addc2a84.mjs'; var baseGetTag = _baseGetTag, isArray = isArray_1, isObjectLike = isObjectLike_1; /** `Object#toString` result references. */ var stringTag = '[object String]'; /** * Checks if `value` is classified as a `String` primitive or object. * * @static * @since 0.1.0 * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a string, else `false`. * @example * * _.isString('abc'); * // => true * * _.isString(1); * // => false */ function isString(value) { return typeof value == 'string' || !isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag; } var isString_1 = isString; export { isString_1 as i }; //# sourceMappingURL=dep-11fa9c2c.mjs.map