UNPKG

248 BJavaScriptView Raw
1var
2 /**
3 * Dependencies.
4 */
5 fs = require('fs'),
6
7 /**
8 * Local variables.
9 */
10 style = fs.readFileSync(__dirname + '/robot.html', 'utf8');
11
12
13module.exports = function () {
14 console.log(style);
15};
16
17module.exports();
\No newline at end of file