// 是å¦å…·æœ‰è¯¥çº¿
export function hasLine(data, from, to) {
    for (let i = 0; i < data.lineList.length; i++) {
        let line = data.lineList[i]
        if (line.from === from && line.to === to) {
            return true
        }
    }
    return false
}
// 是å¦å«æœ‰ç›¸å的线
export function hashOppositeLine(data, from, to) {
    return hasLine(data, to, from)
}
// 获å–连线
export function getConnector(jsp, from, to) {
    let connection = jsp.getConnections({
        source: from,
        target: to
    })[0]
    return connection
}
// 获å–唯一标识
export function uuid() {
    return Math.random().toString(36).substr(3, 10)
}