Blame view

node_modules/extract-text-webpack-plugin/dist/lib/OrderUndefinedError.js 415 Bytes
2a09d1a4   liuqimichale   添加宜春 天水 宣化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  'use strict';
  
  Object.defineProperty(exports, "__esModule", {
    value: true
  });
  function OrderUndefinedError(module) {
    Error.call(this);
    Error.captureStackTrace(this, OrderUndefinedError);
    this.name = 'OrderUndefinedError';
    this.message = 'Order in extracted chunk undefined';
    this.module = module;
  }
  exports.default = OrderUndefinedError;
  
  
  OrderUndefinedError.prototype = Object.create(Error.prototype);