UNPKG

200 BJavaScriptView Raw
1var fs = require("fs");
2
3var JsFile = function(file) {
4
5 this.compile = function() {
6 var js = fs.readFileSync(file, "UTF-8");
7 return js;
8 }
9};
10
11module.exports = JsFile;
\No newline at end of file