mirror of https://github.com/webpack/webpack.git
11 lines
190 B
JavaScript
11 lines
190 B
JavaScript
|
module.exports = function(content) {
|
||
|
const callback = this.async();
|
||
|
|
||
|
if (content.includes("Failed")) {
|
||
|
callback(new Error("Error in loader"));
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
callback(null, content);
|
||
|
};
|