"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getZIndexOf = getZIndexOf; /** * 获取元素的 zIndex * Get the zIndex of the element * @param datum - 元素数据 | element data * @returns - zIndex | zIndex */ function getZIndexOf(datum) { var _a; return ((_a = datum === null || datum === void 0 ? void 0 : datum.style) === null || _a === void 0 ? void 0 : _a.zIndex) || 0; } //# sourceMappingURL=z-index.js.map