Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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;