Code coverage report for lib\webworker\WebWorkerChunkTemplatePlugin.js

Statements: 100% (16 / 16)      Branches: 100% (4 / 4)      Functions: 100% (4 / 4)      Lines: 100% (16 / 16)      Ignored: none     

All files » lib\webworker\ » WebWorkerChunkTemplatePlugin.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27        1   1   1   1 1 1 1 1 1 1 1   1 3 3 3 3      
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
var ConcatSource = require("webpack-core/lib/ConcatSource");
 
function WebWorkerChunkTemplatePlugin() {
}
module.exports = WebWorkerChunkTemplatePlugin;
 
WebWorkerChunkTemplatePlugin.prototype.apply = function(chunkTemplate) {
	chunkTemplate.plugin("render", function(modules, chunk) {
		var chunkCallbackName = this.outputOptions.chunkCallbackName || ("webpackChunk" + (this.outputOptions.library || ""));
		var source = new ConcatSource();
		source.add(chunkCallbackName + "(" + JSON.stringify(chunk.ids) + ",");
		source.add(modules);
		source.add(")");
		return source;
	});
	chunkTemplate.plugin("hash", function(hash) {
		hash.update("webworker");
		hash.update("3");
		hash.update(this.outputOptions.chunkCallbackName + "");
		hash.update(this.outputOptions.library + "");
	});
};