WebpackError.js 259 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 /* MIT License http://www.opensource.org/licenses/mit-license.php Author Jarid Margolin @jaridmargolin */ "use strict"; module.exports = class WebpackError extends Error { inspect() { return this.stack + (this.details ? `\n${this.details}` : ""); } };