W72crm_web-master/node_modules/webpack/lib/HotUpdateChunk.js

17 lines
289 B
JavaScript

/*
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;