UNPKG

cose-base

Version:

Core module for compound spring embedder based layout styles

13 lines (9 loc) 289 B
var LGraph = require('layout-base').LGraph; function CoSEGraph(parent, graphMgr, vGraph) { LGraph.call(this, parent, graphMgr, vGraph); } CoSEGraph.prototype = Object.create(LGraph.prototype); for (var prop in LGraph) { CoSEGraph[prop] = LGraph[prop]; } module.exports = CoSEGraph;