Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

fs.js 576B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.stat = exports.readFile = void 0;
  6. function _fs() {
  7. const data = require("fs");
  8. _fs = function () {
  9. return data;
  10. };
  11. return data;
  12. }
  13. function _gensync() {
  14. const data = require("gensync");
  15. _gensync = function () {
  16. return data;
  17. };
  18. return data;
  19. }
  20. const readFile = _gensync()({
  21. sync: _fs().readFileSync,
  22. errback: _fs().readFile
  23. });
  24. exports.readFile = readFile;
  25. const stat = _gensync()({
  26. sync: _fs().statSync,
  27. errback: _fs().stat
  28. });
  29. exports.stat = stat;