Personal intranet/start page where I can view the weather, links, fitbit data, and the news.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
385 B

5 years ago
  1. const fs = require('fs');
  2. module.exports=
  3. {
  4. /**
  5. *
  6. * @param fileName
  7. * @returns {any}
  8. */
  9. getFileAsJSON: function(fileName)
  10. {
  11. return JSON.parse(module.exports.getFile(fileName));
  12. },
  13. getFile: function(filename)
  14. {
  15. return fs.readFileSync(filename, 'utf8');
  16. }
  17. };