webpack/test/fixtures/errors/async-error-loader.js

7 lines
207 B
JavaScript

/** @type {import("../../../../").LoaderDefinition} */
module.exports = function (source) {
const callback = this.async();
const error = new Error("this is a callback error");
callback(error, source);
};