mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-03-17 06:20:23 +00:00
8 lines
No EOL
270 B
JavaScript
8 lines
No EOL
270 B
JavaScript
var fs = require('fs');
|
|
// We do this so we use the exact same library in the browser and in node
|
|
// Read and eval library
|
|
// Eval is evil...
|
|
var filedata = fs.readFileSync('./webpages/public/js/cryptico.js','utf8');
|
|
eval(filedata);
|
|
|
|
exports = module.exports = cryptico; |