GoScrobble/web/node_modules/eslint-webpack-plugin/dist/ESLintError.js

21 lines
346 B
JavaScript
Raw Normal View History

2022-04-25 02:47:15 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
class ESLintError extends Error {
/**
* @param {string=} messages
*/
constructor(messages) {
super(messages);
this.name = 'ESLintError';
this.stack = '';
}
}
var _default = ESLintError;
exports.default = _default;