(key)
| 84 | * @returns {string} |
| 85 | */ |
| 86 | const getOppositeKey = function (key) { |
| 87 | const keys = key.split(KEY_DELIMITER); |
| 88 | return [keys[0], keys[2], keys[1]].join(KEY_DELIMITER); |
| 89 | }; |
| 90 | |
| 91 | /** |
| 92 | * get edgeMap with key |
no outgoing calls
no test coverage detected
searching dependent graphs…