Files
portfolio2023/build/node_modules/dag-map/lib/vertex.js
T
2023-11-24 22:35:41 +01:00

16 lines
219 B
JavaScript

/**
* DAG Vertex
*
* @class Vertex
* @constructor
*/
export default function Vertex(name) {
this.name = name;
this.incoming = {};
this.incomingNames = [];
this.hasOutgoing = false;
this.value = null;
}