This repository has been archived on 2026-05-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GitBlog.md/src/script_loader.js
T
2021-03-30 16:29:20 +02:00

11 lines
221 B
JavaScript

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' }));
};