Skip to content

Commit 6f4e60d

Browse files
shamajoshwiens
authored andcommitted
fix: Remove unneeded module.exports
1 parent 74e68ee commit 6f4e60d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ function RawSource(value) {
1010
Source.call(this);
1111
this._value = value;
1212
}
13-
module.exports = RawSource;
1413

1514
RawSource.prototype = Object.create(Source.prototype);
1615
RawSource.prototype._bake = function() {
@@ -56,4 +55,4 @@ CompressionPlugin.prototype.apply = function(compiler) {
5655
}.bind(this), callback);
5756
}.bind(this));
5857
}.bind(this));
59-
};
58+
};

0 commit comments

Comments
 (0)