UNPKG

252 BJavaScriptView Raw
1var fs = require('fs');
2
3var header = require('./header');
4
5function instructions(headerText, filename){
6 header(headerText);
7 console.log(fs.readFileSync(__dirname + '/instructions/' + filename + '.txt', 'utf-8'));
8}
9
10module.exports = instructions;