PHP WebShell

Текущая директория: /usr/lib/node_modules/bitgo/node_modules/dag-map/lib

Просмотр файла: vertex.js

/**
 * DAG Vertex
 *
 * @class Vertex
 * @constructor
 */

export default function Vertex(name) {
  this.name = name;
  this.incoming = {};
  this.incomingNames = [];
  this.hasOutgoing = false;
  this.value = null;
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!