mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-03-16 22:10:31 +00:00
9 lines
261 B
JavaScript
9 lines
261 B
JavaScript
|
|
var fs = require('fs');
|
||
|
|
// We do this so we use the exact same librar 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.cryptico = cryptico
|