NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/dagre/lib/graphlib.js
2023-09-14 14:47:11 +08:00

18 lines
253 B
JavaScript

/* global window */
var graphlib;
if (typeof require === "function") {
try {
graphlib = require("graphlib");
} catch (e) {
// continue regardless of error
}
}
if (!graphlib) {
graphlib = window.graphlib;
}
module.exports = graphlib;