"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.statesOf = statesOf;
/**
* 获取元素的状态
*
* Get the state of the element
* @param datum - 元素数据 Element data
* @returns 状态列表 State list
*/
function statesOf(datum) {
return datum.states || [];
}
//# sourceMappingURL=state.js.map