Skip to content

Commit 647bd05

Browse files
committed
removed semicolon
1 parent 5209313 commit 647bd05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/JsonpChunkTemplatePlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ JsonpChunkTemplatePlugin.prototype.apply = function(chunkTemplate) {
1515
var source = new ConcatSource();
1616
source.add(jsonpFunction + "(" + JSON.stringify(chunk.ids) + ",");
1717
source.add(modules);
18-
source.add(");");
18+
source.add(")");
1919
return source;
2020
});
2121
chunkTemplate.plugin("hash", function(hash) {

0 commit comments

Comments
 (0)