Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

17 wiersze
289 B

  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. const Chunk = require("./Chunk");
  7. class HotUpdateChunk extends Chunk {
  8. constructor() {
  9. super();
  10. this.removedModules = undefined;
  11. }
  12. }
  13. module.exports = HotUpdateChunk;