webapi-eca/node_modules/my-cryptico/index.js

9 lines
270 B
JavaScript
Raw Normal View History

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);
2014-04-02 21:08:05 +00:00
exports = module.exports = cryptico;