Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

fs.js 775B

12345678910111213141516171819
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.createDirentFromStats = void 0;
  4. class DirentFromStats {
  5. constructor(name, stats) {
  6. this.name = name;
  7. this.isBlockDevice = stats.isBlockDevice.bind(stats);
  8. this.isCharacterDevice = stats.isCharacterDevice.bind(stats);
  9. this.isDirectory = stats.isDirectory.bind(stats);
  10. this.isFIFO = stats.isFIFO.bind(stats);
  11. this.isFile = stats.isFile.bind(stats);
  12. this.isSocket = stats.isSocket.bind(stats);
  13. this.isSymbolicLink = stats.isSymbolicLink.bind(stats);
  14. }
  15. }
  16. function createDirentFromStats(name, stats) {
  17. return new DirentFromStats(name, stats);
  18. }
  19. exports.createDirentFromStats = createDirentFromStats;