feat(utils): getOutgoers function

This commit is contained in:
moklick
2019-07-26 01:17:12 +02:00
parent a6d191355a
commit 71afccbaf3
3 changed files with 21 additions and 5 deletions
+3 -1
View File
@@ -2,11 +2,13 @@ import ReactGraph from './ReactGraph';
import {
isNode as _isNode ,
isEdge as _isEdge,
removeElements as _removeElements
removeElements as _removeElements,
getOutgoers as _getOutgoers
} from './graph-utils';
export const isNode = _isNode;
export const isEdge = _isEdge;
export const removeElements = _removeElements;
export const getOutgoers = _getOutgoers;
export default ReactGraph;