mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 15:56:24 +02:00
16 lines
219 B
JavaScript
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;
|
|
}
|