Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

NodeOutputFileSystem.js 503B

12345678910111213141516171819202122
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. const fs = require("fs");
  7. const path = require("path");
  8. const mkdirp = require("mkdirp");
  9. class NodeOutputFileSystem {
  10. constructor() {
  11. this.mkdirp = mkdirp;
  12. this.mkdir = fs.mkdir.bind(fs);
  13. this.rmdir = fs.rmdir.bind(fs);
  14. this.unlink = fs.unlink.bind(fs);
  15. this.writeFile = fs.writeFile.bind(fs);
  16. this.join = path.join.bind(path);
  17. }
  18. }
  19. module.exports = NodeOutputFileSystem;