PlantUML integration

This commit is contained in:
Klemek
2019-06-23 13:48:28 +02:00
parent 35a7747d6d
commit 6dbc7f359b
12 changed files with 1878 additions and 15 deletions
+10
View File
@@ -0,0 +1,10 @@
const fs = require('fs');
/**
* Import client-side script into the "global" var
* @param scriptPath
*/
module.exports = (scriptPath) => {
eval.call(global, fs.readFileSync(scriptPath, {encoding: 'UTF-8'}));
};