Blame view

node_modules/webpack/lib/WebpackError.js 259 Bytes
aaac7fed   liuqimichale   add
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}` : "");
  	}
  };