UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

44 lines (39 loc) 1.26 kB
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ import { _ as _typeof } from './dep-82805301.mjs'; import './dep-10a947a6.mjs'; import { e as eq_1 } from './dep-7f239c43.mjs'; import { i as isArrayLike_1 } from './dep-0e832fc7.mjs'; import { _ as _isIndex } from './dep-71f84cf2.mjs'; import { i as isObject_1 } from './dep-6ad18815.mjs'; import './dep-1cc1c24f.mjs'; var eq = eq_1, isArrayLike = isArrayLike_1, isIndex = _isIndex, isObject = isObject_1; /** * Checks if the given arguments are from an iteratee call. * * @private * @param {*} value The potential iteratee value argument. * @param {*} index The potential iteratee index or key argument. * @param {*} object The potential iteratee object argument. * @returns {boolean} Returns `true` if the arguments are from an iteratee call, * else `false`. */ function isIterateeCall(value, index, object) { if (!isObject(object)) { return false; } var type = _typeof(index); if (type == 'number' ? isArrayLike(object) && isIndex(index, object.length) : type == 'string' && index in object) { return eq(object[index], value); } return false; } var _isIterateeCall = isIterateeCall; export { _isIterateeCall as _ }; //# sourceMappingURL=dep-a666b9ad.mjs.map