25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
12345678910111213141516 |
- /*
- MIT License http://www.opensource.org/licenses/mit-license.php
- Author Tobias Koppers @sokra
- */
- "use strict";
-
- const Chunk = require("./Chunk");
-
- class HotUpdateChunk extends Chunk {
- constructor() {
- super();
- this.removedModules = undefined;
- }
- }
-
- module.exports = HotUpdateChunk;
|