captain-invalid-goods
Advanced tools
Comparing version 0.5.1 to 0.5.2
624
lib/index.js
@@ -10,3 +10,3 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
} | ||
})(this, function(__WEBPACK_EXTERNAL_MODULE_31__, __WEBPACK_EXTERNAL_MODULE_32__, __WEBPACK_EXTERNAL_MODULE_50__, __WEBPACK_EXTERNAL_MODULE_51__, __WEBPACK_EXTERNAL_MODULE_88__, __WEBPACK_EXTERNAL_MODULE_200__, __WEBPACK_EXTERNAL_MODULE_201__) { | ||
})(this, function(__WEBPACK_EXTERNAL_MODULE_31__, __WEBPACK_EXTERNAL_MODULE_32__, __WEBPACK_EXTERNAL_MODULE_48__, __WEBPACK_EXTERNAL_MODULE_49__, __WEBPACK_EXTERNAL_MODULE_88__, __WEBPACK_EXTERNAL_MODULE_174__, __WEBPACK_EXTERNAL_MODULE_175__) { | ||
return /******/ (function(modules) { // webpackBootstrap | ||
@@ -74,3 +74,3 @@ /******/ // The module cache | ||
/******/ // Load entry module and return exports | ||
/******/ return __webpack_require__(__webpack_require__.s = 573); | ||
/******/ return __webpack_require__(__webpack_require__.s = 548); | ||
/******/ }) | ||
@@ -90,10 +90,2 @@ /************************************************************************/ | ||
/***/ 1: | ||
/***/ (function(module, exports) { | ||
var core = module.exports = {version: '2.4.0'}; | ||
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef | ||
/***/ }), | ||
/***/ 10: | ||
@@ -122,95 +114,54 @@ /***/ (function(module, exports) { | ||
/***/ 12: | ||
/***/ 117: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var global = __webpack_require__(0) | ||
, core = __webpack_require__(1) | ||
, ctx = __webpack_require__(13) | ||
, hide = __webpack_require__(6) | ||
, PROTOTYPE = 'prototype'; | ||
module.exports = { "default": __webpack_require__(118), __esModule: true }; | ||
var $export = function(type, name, source){ | ||
var IS_FORCED = type & $export.F | ||
, IS_GLOBAL = type & $export.G | ||
, IS_STATIC = type & $export.S | ||
, IS_PROTO = type & $export.P | ||
, IS_BIND = type & $export.B | ||
, IS_WRAP = type & $export.W | ||
, exports = IS_GLOBAL ? core : core[name] || (core[name] = {}) | ||
, expProto = exports[PROTOTYPE] | ||
, target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE] | ||
, key, own, out; | ||
if(IS_GLOBAL)source = name; | ||
for(key in source){ | ||
// contains in native | ||
own = !IS_FORCED && target && target[key] !== undefined; | ||
if(own && key in exports)continue; | ||
// export native or passed | ||
out = own ? target[key] : source[key]; | ||
// prevent global pollution for namespaces | ||
exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key] | ||
// bind timers to global for call from export context | ||
: IS_BIND && own ? ctx(out, global) | ||
// wrap global constructors for prevent change them in library | ||
: IS_WRAP && target[key] == out ? (function(C){ | ||
var F = function(a, b, c){ | ||
if(this instanceof C){ | ||
switch(arguments.length){ | ||
case 0: return new C; | ||
case 1: return new C(a); | ||
case 2: return new C(a, b); | ||
} return new C(a, b, c); | ||
} return C.apply(this, arguments); | ||
}; | ||
F[PROTOTYPE] = C[PROTOTYPE]; | ||
return F; | ||
// make static versions for prototype methods | ||
})(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out; | ||
// export proto methods to core.%CONSTRUCTOR%.methods.%NAME% | ||
if(IS_PROTO){ | ||
(exports.virtual || (exports.virtual = {}))[key] = out; | ||
// export proto methods to core.%CONSTRUCTOR%.prototype.%NAME% | ||
if(type & $export.R && expProto && !expProto[key])hide(expProto, key, out); | ||
} | ||
} | ||
}; | ||
// type bitmap | ||
$export.F = 1; // forced | ||
$export.G = 2; // global | ||
$export.S = 4; // static | ||
$export.P = 8; // proto | ||
$export.B = 16; // bind | ||
$export.W = 32; // wrap | ||
$export.U = 64; // safe | ||
$export.R = 128; // real proto method for `library` | ||
module.exports = $export; | ||
/***/ }), | ||
/***/ 122: | ||
/***/ 118: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
module.exports = { "default": __webpack_require__(123), __esModule: true }; | ||
__webpack_require__(119); | ||
module.exports = __webpack_require__(3).Object.assign; | ||
/***/ }), | ||
/***/ 123: | ||
/***/ 119: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
__webpack_require__(124); | ||
module.exports = __webpack_require__(1).Object.assign; | ||
// 19.1.3.1 Object.assign(target, source) | ||
var $export = __webpack_require__(15); | ||
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(120)}); | ||
/***/ }), | ||
/***/ 124: | ||
/***/ 12: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 19.1.3.1 Object.assign(target, source) | ||
var $export = __webpack_require__(12); | ||
// optional / simple context binding | ||
var aFunction = __webpack_require__(19); | ||
module.exports = function(fn, that, length){ | ||
aFunction(fn); | ||
if(that === undefined)return fn; | ||
switch(length){ | ||
case 1: return function(a){ | ||
return fn.call(that, a); | ||
}; | ||
case 2: return function(a, b){ | ||
return fn.call(that, a, b); | ||
}; | ||
case 3: return function(a, b, c){ | ||
return fn.call(that, a, b, c); | ||
}; | ||
} | ||
return function(/* ...args */){ | ||
return fn.apply(that, arguments); | ||
}; | ||
}; | ||
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(125)}); | ||
/***/ }), | ||
/***/ 125: | ||
/***/ 120: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -221,7 +172,7 @@ | ||
// 19.1.2.1 Object.assign(target, source, ...) | ||
var getKeys = __webpack_require__(23) | ||
, gOPS = __webpack_require__(73) | ||
, pIE = __webpack_require__(52) | ||
, toObject = __webpack_require__(33) | ||
, IObject = __webpack_require__(35) | ||
var getKeys = __webpack_require__(24) | ||
, gOPS = __webpack_require__(68) | ||
, pIE = __webpack_require__(50) | ||
, toObject = __webpack_require__(36) | ||
, IObject = __webpack_require__(34) | ||
, $assign = Object.assign; | ||
@@ -257,28 +208,2 @@ | ||
/***/ 13: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// optional / simple context binding | ||
var aFunction = __webpack_require__(20); | ||
module.exports = function(fn, that, length){ | ||
aFunction(fn); | ||
if(that === undefined)return fn; | ||
switch(length){ | ||
case 1: return function(a){ | ||
return fn.call(that, a); | ||
}; | ||
case 2: return function(a, b){ | ||
return fn.call(that, a, b); | ||
}; | ||
case 3: return function(a, b, c){ | ||
return fn.call(that, a, b, c); | ||
}; | ||
} | ||
return function(/* ...args */){ | ||
return fn.apply(that, arguments); | ||
}; | ||
}; | ||
/***/ }), | ||
/***/ 14: | ||
/***/ (function(module, exports) { | ||
@@ -294,3 +219,3 @@ | ||
/***/ 149: | ||
/***/ 139: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -303,3 +228,3 @@ | ||
var _assign = __webpack_require__(122); | ||
var _assign = __webpack_require__(117); | ||
@@ -326,17 +251,70 @@ var _assign2 = _interopRequireDefault(_assign); | ||
/***/ 16: | ||
/***/ (function(module, exports) { | ||
/***/ 15: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
module.exports = function(bitmap, value){ | ||
return { | ||
enumerable : !(bitmap & 1), | ||
configurable: !(bitmap & 2), | ||
writable : !(bitmap & 4), | ||
value : value | ||
}; | ||
var global = __webpack_require__(0) | ||
, core = __webpack_require__(3) | ||
, ctx = __webpack_require__(12) | ||
, hide = __webpack_require__(6) | ||
, PROTOTYPE = 'prototype'; | ||
var $export = function(type, name, source){ | ||
var IS_FORCED = type & $export.F | ||
, IS_GLOBAL = type & $export.G | ||
, IS_STATIC = type & $export.S | ||
, IS_PROTO = type & $export.P | ||
, IS_BIND = type & $export.B | ||
, IS_WRAP = type & $export.W | ||
, exports = IS_GLOBAL ? core : core[name] || (core[name] = {}) | ||
, expProto = exports[PROTOTYPE] | ||
, target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE] | ||
, key, own, out; | ||
if(IS_GLOBAL)source = name; | ||
for(key in source){ | ||
// contains in native | ||
own = !IS_FORCED && target && target[key] !== undefined; | ||
if(own && key in exports)continue; | ||
// export native or passed | ||
out = own ? target[key] : source[key]; | ||
// prevent global pollution for namespaces | ||
exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key] | ||
// bind timers to global for call from export context | ||
: IS_BIND && own ? ctx(out, global) | ||
// wrap global constructors for prevent change them in library | ||
: IS_WRAP && target[key] == out ? (function(C){ | ||
var F = function(a, b, c){ | ||
if(this instanceof C){ | ||
switch(arguments.length){ | ||
case 0: return new C; | ||
case 1: return new C(a); | ||
case 2: return new C(a, b); | ||
} return new C(a, b, c); | ||
} return C.apply(this, arguments); | ||
}; | ||
F[PROTOTYPE] = C[PROTOTYPE]; | ||
return F; | ||
// make static versions for prototype methods | ||
})(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out; | ||
// export proto methods to core.%CONSTRUCTOR%.methods.%NAME% | ||
if(IS_PROTO){ | ||
(exports.virtual || (exports.virtual = {}))[key] = out; | ||
// export proto methods to core.%CONSTRUCTOR%.prototype.%NAME% | ||
if(type & $export.R && expProto && !expProto[key])hide(expProto, key, out); | ||
} | ||
} | ||
}; | ||
// type bitmap | ||
$export.F = 1; // forced | ||
$export.G = 2; // global | ||
$export.S = 4; // static | ||
$export.P = 8; // proto | ||
$export.B = 16; // bind | ||
$export.W = 32; // wrap | ||
$export.U = 64; // safe | ||
$export.R = 128; // real proto method for `library` | ||
module.exports = $export; | ||
/***/ }), | ||
/***/ 17: | ||
/***/ 16: | ||
/***/ (function(module, exports) { | ||
@@ -352,3 +330,3 @@ | ||
/***/ 18: | ||
/***/ 17: | ||
/***/ (function(module, exports) { | ||
@@ -365,28 +343,5 @@ | ||
/***/ 19: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var isObject = __webpack_require__(8) | ||
, document = __webpack_require__(0).document | ||
// in old IE typeof document.createElement is 'object' | ||
, is = isObject(document) && isObject(document.createElement); | ||
module.exports = function(it){ | ||
return is ? document.createElement(it) : {}; | ||
}; | ||
/***/ }), | ||
/***/ 20: | ||
/***/ 174: | ||
/***/ (function(module, exports) { | ||
module.exports = function(it){ | ||
if(typeof it != 'function')throw TypeError(it + ' is not a function!'); | ||
return it; | ||
}; | ||
/***/ }), | ||
/***/ 200: | ||
/***/ (function(module, exports) { | ||
module.exports = require("vant/lib/actionsheet/style"); | ||
@@ -396,3 +351,3 @@ | ||
/***/ 201: | ||
/***/ 175: | ||
/***/ (function(module, exports) { | ||
@@ -404,9 +359,11 @@ | ||
/***/ 21: | ||
/***/ 18: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var shared = __webpack_require__(24)('keys') | ||
, uid = __webpack_require__(22); | ||
module.exports = function(key){ | ||
return shared[key] || (shared[key] = uid(key)); | ||
var isObject = __webpack_require__(8) | ||
, document = __webpack_require__(0).document | ||
// in old IE typeof document.createElement is 'object' | ||
, is = isObject(document) && isObject(document.createElement); | ||
module.exports = function(it){ | ||
return is ? document.createElement(it) : {}; | ||
}; | ||
@@ -416,74 +373,8 @@ | ||
/***/ 22: | ||
/***/ 19: | ||
/***/ (function(module, exports) { | ||
var id = 0 | ||
, px = Math.random(); | ||
module.exports = function(key){ | ||
return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36)); | ||
}; | ||
/***/ }), | ||
/***/ 23: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 19.1.2.14 / 15.2.3.14 Object.keys(O) | ||
var $keys = __webpack_require__(34) | ||
, enumBugKeys = __webpack_require__(25); | ||
module.exports = Object.keys || function keys(O){ | ||
return $keys(O, enumBugKeys); | ||
}; | ||
/***/ }), | ||
/***/ 24: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var global = __webpack_require__(0) | ||
, SHARED = '__core-js_shared__' | ||
, store = global[SHARED] || (global[SHARED] = {}); | ||
module.exports = function(key){ | ||
return store[key] || (store[key] = {}); | ||
}; | ||
/***/ }), | ||
/***/ 25: | ||
/***/ (function(module, exports) { | ||
// IE 8- don't enum bug keys | ||
module.exports = ( | ||
'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' | ||
).split(','); | ||
/***/ }), | ||
/***/ 26: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 7.1.1 ToPrimitive(input [, PreferredType]) | ||
var isObject = __webpack_require__(8); | ||
// instead of the ES6 spec version, we didn't implement @@toPrimitive case | ||
// and the second argument - flag - preferred type is a string | ||
module.exports = function(it, S){ | ||
if(!isObject(it))return it; | ||
var fn, val; | ||
if(S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it)))return val; | ||
if(typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it)))return val; | ||
if(!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it)))return val; | ||
throw TypeError("Can't convert object to primitive value"); | ||
}; | ||
/***/ }), | ||
/***/ 28: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 7.1.15 ToLength | ||
var toInteger = __webpack_require__(18) | ||
, min = Math.min; | ||
module.exports = function(it){ | ||
return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 | ||
if(typeof it != 'function')throw TypeError(it + ' is not a function!'); | ||
return it; | ||
}; | ||
@@ -493,12 +384,3 @@ | ||
/***/ 29: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
module.exports = !__webpack_require__(4) && !__webpack_require__(11)(function(){ | ||
return Object.defineProperty(__webpack_require__(19)('div'), 'a', {get: function(){ return 7; }}).a != 7; | ||
}); | ||
/***/ }), | ||
/***/ 3: | ||
/***/ 2: | ||
/***/ (function(module, exports) { | ||
@@ -601,23 +483,108 @@ | ||
/***/ 31: | ||
/***/ 20: | ||
/***/ (function(module, exports) { | ||
module.exports = require("vant/lib/icon/style"); | ||
module.exports = function(bitmap, value){ | ||
return { | ||
enumerable : !(bitmap & 1), | ||
configurable: !(bitmap & 2), | ||
writable : !(bitmap & 4), | ||
value : value | ||
}; | ||
}; | ||
/***/ }), | ||
/***/ 32: | ||
/***/ 21: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var shared = __webpack_require__(23)('keys') | ||
, uid = __webpack_require__(22); | ||
module.exports = function(key){ | ||
return shared[key] || (shared[key] = uid(key)); | ||
}; | ||
/***/ }), | ||
/***/ 22: | ||
/***/ (function(module, exports) { | ||
module.exports = require("vant/lib/icon"); | ||
var id = 0 | ||
, px = Math.random(); | ||
module.exports = function(key){ | ||
return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36)); | ||
}; | ||
/***/ }), | ||
/***/ 33: | ||
/***/ 23: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 7.1.13 ToObject(argument) | ||
var defined = __webpack_require__(17); | ||
var global = __webpack_require__(0) | ||
, SHARED = '__core-js_shared__' | ||
, store = global[SHARED] || (global[SHARED] = {}); | ||
module.exports = function(key){ | ||
return store[key] || (store[key] = {}); | ||
}; | ||
/***/ }), | ||
/***/ 24: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 19.1.2.14 / 15.2.3.14 Object.keys(O) | ||
var $keys = __webpack_require__(33) | ||
, enumBugKeys = __webpack_require__(25); | ||
module.exports = Object.keys || function keys(O){ | ||
return $keys(O, enumBugKeys); | ||
}; | ||
/***/ }), | ||
/***/ 25: | ||
/***/ (function(module, exports) { | ||
// IE 8- don't enum bug keys | ||
module.exports = ( | ||
'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' | ||
).split(','); | ||
/***/ }), | ||
/***/ 26: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 7.1.1 ToPrimitive(input [, PreferredType]) | ||
var isObject = __webpack_require__(8); | ||
// instead of the ES6 spec version, we didn't implement @@toPrimitive case | ||
// and the second argument - flag - preferred type is a string | ||
module.exports = function(it, S){ | ||
if(!isObject(it))return it; | ||
var fn, val; | ||
if(S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it)))return val; | ||
if(typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it)))return val; | ||
if(!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it)))return val; | ||
throw TypeError("Can't convert object to primitive value"); | ||
}; | ||
/***/ }), | ||
/***/ 28: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
module.exports = !__webpack_require__(4) && !__webpack_require__(11)(function(){ | ||
return Object.defineProperty(__webpack_require__(18)('div'), 'a', {get: function(){ return 7; }}).a != 7; | ||
}); | ||
/***/ }), | ||
/***/ 29: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 7.1.15 ToLength | ||
var toInteger = __webpack_require__(17) | ||
, min = Math.min; | ||
module.exports = function(it){ | ||
return Object(defined(it)); | ||
return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 | ||
}; | ||
@@ -627,3 +594,25 @@ | ||
/***/ 34: | ||
/***/ 3: | ||
/***/ (function(module, exports) { | ||
var core = module.exports = {version: '2.4.0'}; | ||
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef | ||
/***/ }), | ||
/***/ 31: | ||
/***/ (function(module, exports) { | ||
module.exports = require("vant/lib/icon/style"); | ||
/***/ }), | ||
/***/ 32: | ||
/***/ (function(module, exports) { | ||
module.exports = require("vant/lib/icon"); | ||
/***/ }), | ||
/***/ 33: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -633,3 +622,3 @@ | ||
, toIObject = __webpack_require__(9) | ||
, arrayIndexOf = __webpack_require__(39)(false) | ||
, arrayIndexOf = __webpack_require__(38)(false) | ||
, IE_PROTO = __webpack_require__(21)('IE_PROTO'); | ||
@@ -652,7 +641,7 @@ | ||
/***/ 35: | ||
/***/ 34: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// fallback for non-array-like ES3 and non-enumerable old V8 strings | ||
var cof = __webpack_require__(14); | ||
var cof = __webpack_require__(13); | ||
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){ | ||
@@ -664,10 +653,21 @@ return cof(it) == 'String' ? it.split('') : Object(it); | ||
/***/ 39: | ||
/***/ 36: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 7.1.13 ToObject(argument) | ||
var defined = __webpack_require__(16); | ||
module.exports = function(it){ | ||
return Object(defined(it)); | ||
}; | ||
/***/ }), | ||
/***/ 38: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// false -> Array#indexOf | ||
// true -> Array#includes | ||
var toIObject = __webpack_require__(9) | ||
, toLength = __webpack_require__(28) | ||
, toIndex = __webpack_require__(40); | ||
, toLength = __webpack_require__(29) | ||
, toIndex = __webpack_require__(39); | ||
module.exports = function(IS_INCLUDES){ | ||
@@ -692,16 +692,6 @@ return function($this, el, fromIndex){ | ||
/***/ 4: | ||
/***/ 39: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// Thank's IE8 for his funny defineProperty | ||
module.exports = !__webpack_require__(11)(function(){ | ||
return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7; | ||
}); | ||
/***/ }), | ||
/***/ 40: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var toInteger = __webpack_require__(18) | ||
var toInteger = __webpack_require__(17) | ||
, max = Math.max | ||
@@ -716,14 +706,13 @@ , min = Math.min; | ||
/***/ 5: | ||
/***/ 4: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var isObject = __webpack_require__(8); | ||
module.exports = function(it){ | ||
if(!isObject(it))throw TypeError(it + ' is not an object!'); | ||
return it; | ||
}; | ||
// Thank's IE8 for his funny defineProperty | ||
module.exports = !__webpack_require__(11)(function(){ | ||
return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7; | ||
}); | ||
/***/ }), | ||
/***/ 50: | ||
/***/ 48: | ||
/***/ (function(module, exports) { | ||
@@ -735,3 +724,3 @@ | ||
/***/ 51: | ||
/***/ 49: | ||
/***/ (function(module, exports) { | ||
@@ -743,3 +732,14 @@ | ||
/***/ 52: | ||
/***/ 5: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var isObject = __webpack_require__(8); | ||
module.exports = function(it){ | ||
if(!isObject(it))throw TypeError(it + ' is not an object!'); | ||
return it; | ||
}; | ||
/***/ }), | ||
/***/ 50: | ||
/***/ (function(module, exports) { | ||
@@ -759,3 +759,3 @@ | ||
var _defineProperty = __webpack_require__(58); | ||
var _defineProperty = __webpack_require__(67); | ||
@@ -783,3 +783,3 @@ var _defineProperty2 = _interopRequireDefault(_defineProperty); | ||
/***/ 573: | ||
/***/ 548: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -794,3 +794,3 @@ | ||
var _main = __webpack_require__(574); | ||
var _main = __webpack_require__(549); | ||
@@ -805,3 +805,3 @@ var _main2 = _interopRequireDefault(_main); | ||
/***/ 574: | ||
/***/ 549: | ||
/***/ (function(module, __webpack_exports__, __webpack_require__) { | ||
@@ -811,9 +811,9 @@ | ||
Object.defineProperty(__webpack_exports__, "__esModule", { value: true }); | ||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_main_vue__ = __webpack_require__(576); | ||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_main_vue__ = __webpack_require__(551); | ||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_main_vue___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_main_vue__); | ||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_17fda9f1_hasScoped_false_preserveWhitespace_false_node_modules_vue_loader_lib_selector_type_template_index_0_main_vue__ = __webpack_require__(577); | ||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_17fda9f1_hasScoped_false_preserveWhitespace_false_node_modules_vue_loader_lib_selector_type_template_index_0_main_vue__ = __webpack_require__(552); | ||
function injectStyle (ssrContext) { | ||
__webpack_require__(575) | ||
__webpack_require__(550) | ||
} | ||
var normalizeComponent = __webpack_require__(3) | ||
var normalizeComponent = __webpack_require__(2) | ||
/* script */ | ||
@@ -842,3 +842,3 @@ | ||
/***/ 575: | ||
/***/ 550: | ||
/***/ (function(module, exports) { | ||
@@ -850,3 +850,3 @@ | ||
/***/ 576: | ||
/***/ 551: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -861,3 +861,3 @@ | ||
var _extends2 = __webpack_require__(149); | ||
var _extends2 = __webpack_require__(139); | ||
@@ -870,11 +870,11 @@ var _extends3 = _interopRequireDefault(_extends2); | ||
var _style4 = __webpack_require__(200); | ||
var _style4 = __webpack_require__(174); | ||
var _actionsheet = __webpack_require__(201); | ||
var _actionsheet = __webpack_require__(175); | ||
var _actionsheet2 = _interopRequireDefault(_actionsheet); | ||
var _style5 = __webpack_require__(50); | ||
var _style5 = __webpack_require__(48); | ||
var _cellGroup = __webpack_require__(51); | ||
var _cellGroup = __webpack_require__(49); | ||
@@ -990,3 +990,3 @@ var _cellGroup2 = _interopRequireDefault(_cellGroup); | ||
/***/ 577: | ||
/***/ 552: | ||
/***/ (function(module, __webpack_exports__, __webpack_require__) { | ||
@@ -1074,9 +1074,2 @@ | ||
/***/ 58: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
module.exports = { "default": __webpack_require__(63), __esModule: true }; | ||
/***/ }), | ||
/***/ 6: | ||
@@ -1086,3 +1079,3 @@ /***/ (function(module, exports, __webpack_require__) { | ||
var dP = __webpack_require__(7) | ||
, createDesc = __webpack_require__(16); | ||
, createDesc = __webpack_require__(20); | ||
module.exports = __webpack_require__(4) ? function(object, key, value){ | ||
@@ -1097,19 +1090,24 @@ return dP.f(object, key, createDesc(1, value)); | ||
/***/ 63: | ||
/***/ 67: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
__webpack_require__(64); | ||
var $Object = __webpack_require__(1).Object; | ||
module.exports = function defineProperty(it, key, desc){ | ||
return $Object.defineProperty(it, key, desc); | ||
}; | ||
module.exports = { "default": __webpack_require__(69), __esModule: true }; | ||
/***/ }), | ||
/***/ 64: | ||
/***/ 68: | ||
/***/ (function(module, exports) { | ||
exports.f = Object.getOwnPropertySymbols; | ||
/***/ }), | ||
/***/ 69: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var $export = __webpack_require__(12); | ||
// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes) | ||
$export($export.S + $export.F * !__webpack_require__(4), 'Object', {defineProperty: __webpack_require__(7).f}); | ||
__webpack_require__(70); | ||
var $Object = __webpack_require__(3).Object; | ||
module.exports = function defineProperty(it, key, desc){ | ||
return $Object.defineProperty(it, key, desc); | ||
}; | ||
@@ -1122,3 +1120,3 @@ /***/ }), | ||
var anObject = __webpack_require__(5) | ||
, IE8_DOM_DEFINE = __webpack_require__(29) | ||
, IE8_DOM_DEFINE = __webpack_require__(28) | ||
, toPrimitive = __webpack_require__(26) | ||
@@ -1141,6 +1139,8 @@ , dP = Object.defineProperty; | ||
/***/ 73: | ||
/***/ (function(module, exports) { | ||
/***/ 70: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
exports.f = Object.getOwnPropertySymbols; | ||
var $export = __webpack_require__(15); | ||
// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes) | ||
$export($export.S + $export.F * !__webpack_require__(4), 'Object', {defineProperty: __webpack_require__(7).f}); | ||
@@ -1169,4 +1169,4 @@ /***/ }), | ||
// to indexed object, toObject with fallback for non-array-like ES3 strings | ||
var IObject = __webpack_require__(35) | ||
, defined = __webpack_require__(17); | ||
var IObject = __webpack_require__(34) | ||
, defined = __webpack_require__(16); | ||
module.exports = function(it){ | ||
@@ -1173,0 +1173,0 @@ return IObject(defined(it)); |
{ | ||
"name": "captain-invalid-goods", | ||
"version": "0.5.1", | ||
"version": "0.5.2", | ||
"description": "不可用商品列表组件", | ||
@@ -10,9 +10,3 @@ "main": "./lib/index.js", | ||
"devDependencies": {}, | ||
"dependencies": { | ||
"lodash": "^4.17.4", | ||
"vant": "^0.7.2", | ||
"vant-css": "^0.7.2", | ||
"zan-ajax": "^1.1.1", | ||
"zan-utils": "^1.0.7" | ||
}, | ||
"dependencies": {}, | ||
"keywords": [ | ||
@@ -25,3 +19,11 @@ "youzan", | ||
"lib" | ||
] | ||
], | ||
"peerDependencies": { | ||
"lodash": "^4.17.4", | ||
"vant": "^0.7.3", | ||
"vant-css": "^0.7.3", | ||
"vue": "2.4.2", | ||
"zan-ajax": "^1.1.1", | ||
"zan-utils": "^1.0.7" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
34310
6
- Removedlodash@^4.17.4
- Removedvant@^0.7.2
- Removedvant-css@^0.7.2
- Removedzan-ajax@^1.1.1
- Removedzan-utils@^1.0.7