Blame view

node_modules/webpack/lib/WebpackError.js 259 Bytes
2a09d1a4   liuqimichale   添加宜春 天水 宣化
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}` : "");
  	}
  };