@bbn/bbn 1.0.200 → 1.0.203
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bbn.js +168 -105
- package/dist/bbn.js.map +1 -1
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/bbn.js
CHANGED
|
@@ -161,6 +161,16 @@
|
|
|
161
161
|
|
|
162
162
|
/***/ }),
|
|
163
163
|
|
|
164
|
+
/***/ "./node_modules/dayjs/plugin/weekday.js":
|
|
165
|
+
/*!**********************************************!*\
|
|
166
|
+
!*** ./node_modules/dayjs/plugin/weekday.js ***!
|
|
167
|
+
\**********************************************/
|
|
168
|
+
/***/ (function(module) {
|
|
169
|
+
|
|
170
|
+
!function(e,t){ true?module.exports=t():0}(this,(function(){"use strict";return function(e,t){t.prototype.weekday=function(e){var t=this.$locale().weekStart||0,i=this.$W,n=(i<t?i+7:i)-t;return this.$utils().u(e)?n:this.subtract(n,"day").add(e,"day")}}}));
|
|
171
|
+
|
|
172
|
+
/***/ }),
|
|
173
|
+
|
|
164
174
|
/***/ "./dist/$.js":
|
|
165
175
|
/*!*******************!*\
|
|
166
176
|
!*** ./dist/$.js ***!
|
|
@@ -14248,7 +14258,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14248
14258
|
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../core/AxiosError.js */ "./node_modules/axios/lib/core/AxiosError.js");
|
|
14249
14259
|
/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../cancel/CanceledError.js */ "./node_modules/axios/lib/cancel/CanceledError.js");
|
|
14250
14260
|
/* harmony import */ var _helpers_parseProtocol_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../helpers/parseProtocol.js */ "./node_modules/axios/lib/helpers/parseProtocol.js");
|
|
14251
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../platform/index.js */ "./node_modules/axios/lib/platform/
|
|
14261
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../platform/index.js */ "./node_modules/axios/lib/platform/index.js");
|
|
14252
14262
|
/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ "./node_modules/axios/lib/core/AxiosHeaders.js");
|
|
14253
14263
|
/* harmony import */ var _helpers_speedometer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/speedometer.js */ "./node_modules/axios/lib/helpers/speedometer.js");
|
|
14254
14264
|
|
|
@@ -14302,7 +14312,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
14302
14312
|
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
|
14303
14313
|
let requestData = config.data;
|
|
14304
14314
|
const requestHeaders = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__["default"].from(config.headers).normalize();
|
|
14305
|
-
|
|
14315
|
+
let {responseType, withXSRFToken} = config;
|
|
14306
14316
|
let onCanceled;
|
|
14307
14317
|
function done() {
|
|
14308
14318
|
if (config.cancelToken) {
|
|
@@ -14317,13 +14327,12 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
14317
14327
|
let contentType;
|
|
14318
14328
|
|
|
14319
14329
|
if (_utils_js__WEBPACK_IMPORTED_MODULE_2__["default"].isFormData(requestData)) {
|
|
14320
|
-
if (_platform_index_js__WEBPACK_IMPORTED_MODULE_3__["default"].
|
|
14330
|
+
if (_platform_index_js__WEBPACK_IMPORTED_MODULE_3__["default"].hasStandardBrowserEnv || _platform_index_js__WEBPACK_IMPORTED_MODULE_3__["default"].hasStandardBrowserWebWorkerEnv) {
|
|
14321
14331
|
requestHeaders.setContentType(false); // Let the browser set it
|
|
14322
|
-
} else if(
|
|
14323
|
-
requestHeaders.setContentType('multipart/form-data'); // mobile/desktop app frameworks
|
|
14324
|
-
} else if(_utils_js__WEBPACK_IMPORTED_MODULE_2__["default"].isString(contentType = requestHeaders.getContentType())){
|
|
14332
|
+
} else if ((contentType = requestHeaders.getContentType()) !== false) {
|
|
14325
14333
|
// fix semicolon duplication issue for ReactNative FormData implementation
|
|
14326
|
-
|
|
14334
|
+
const [type, ...tokens] = contentType ? contentType.split(';').map(token => token.trim()).filter(Boolean) : [];
|
|
14335
|
+
requestHeaders.setContentType([type || 'multipart/form-data', ...tokens].join('; '));
|
|
14327
14336
|
}
|
|
14328
14337
|
}
|
|
14329
14338
|
|
|
@@ -14439,13 +14448,16 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
14439
14448
|
// Add xsrf header
|
|
14440
14449
|
// This is only done if running in a standard browser environment.
|
|
14441
14450
|
// Specifically not if we're in a web worker, or react-native.
|
|
14442
|
-
if
|
|
14443
|
-
|
|
14444
|
-
|
|
14445
|
-
|
|
14451
|
+
if(_platform_index_js__WEBPACK_IMPORTED_MODULE_3__["default"].hasStandardBrowserEnv) {
|
|
14452
|
+
withXSRFToken && _utils_js__WEBPACK_IMPORTED_MODULE_2__["default"].isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(config));
|
|
14453
|
+
|
|
14454
|
+
if (withXSRFToken || (withXSRFToken !== false && (0,_helpers_isURLSameOrigin_js__WEBPACK_IMPORTED_MODULE_9__["default"])(fullPath))) {
|
|
14455
|
+
// Add xsrf header
|
|
14456
|
+
const xsrfValue = config.xsrfHeaderName && config.xsrfCookieName && _helpers_cookies_js__WEBPACK_IMPORTED_MODULE_10__["default"].read(config.xsrfCookieName);
|
|
14446
14457
|
|
|
14447
|
-
|
|
14448
|
-
|
|
14458
|
+
if (xsrfValue) {
|
|
14459
|
+
requestHeaders.set(config.xsrfHeaderName, xsrfValue);
|
|
14460
|
+
}
|
|
14449
14461
|
}
|
|
14450
14462
|
}
|
|
14451
14463
|
|
|
@@ -14889,7 +14901,31 @@ class Axios {
|
|
|
14889
14901
|
*
|
|
14890
14902
|
* @returns {Promise} The Promise to be fulfilled
|
|
14891
14903
|
*/
|
|
14892
|
-
request(configOrUrl, config) {
|
|
14904
|
+
async request(configOrUrl, config) {
|
|
14905
|
+
try {
|
|
14906
|
+
return await this._request(configOrUrl, config);
|
|
14907
|
+
} catch (err) {
|
|
14908
|
+
if (err instanceof Error) {
|
|
14909
|
+
let dummy;
|
|
14910
|
+
|
|
14911
|
+
Error.captureStackTrace ? Error.captureStackTrace(dummy = {}) : (dummy = new Error());
|
|
14912
|
+
|
|
14913
|
+
// slice off the Error: ... line
|
|
14914
|
+
const stack = dummy.stack ? dummy.stack.replace(/^.+\n/, '') : '';
|
|
14915
|
+
|
|
14916
|
+
if (!err.stack) {
|
|
14917
|
+
err.stack = stack;
|
|
14918
|
+
// match without the 2 top stack lines
|
|
14919
|
+
} else if (stack && !String(err.stack).endsWith(stack.replace(/^.+\n.+\n/, ''))) {
|
|
14920
|
+
err.stack += '\n' + stack
|
|
14921
|
+
}
|
|
14922
|
+
}
|
|
14923
|
+
|
|
14924
|
+
throw err;
|
|
14925
|
+
}
|
|
14926
|
+
}
|
|
14927
|
+
|
|
14928
|
+
_request(configOrUrl, config) {
|
|
14893
14929
|
/*eslint no-param-reassign:0*/
|
|
14894
14930
|
// Allow for axios('example/url'[, config]) a la fetch API
|
|
14895
14931
|
if (typeof configOrUrl === 'string') {
|
|
@@ -15733,7 +15769,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
15733
15769
|
|
|
15734
15770
|
|
|
15735
15771
|
|
|
15736
|
-
const headersToObject = (thing) => thing instanceof _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_0__["default"] ? thing
|
|
15772
|
+
const headersToObject = (thing) => thing instanceof _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_0__["default"] ? { ...thing } : thing;
|
|
15737
15773
|
|
|
15738
15774
|
/**
|
|
15739
15775
|
* Config-specific merge-function which creates a new config-object
|
|
@@ -15805,6 +15841,7 @@ function mergeConfig(config1, config2) {
|
|
|
15805
15841
|
timeout: defaultToConfig2,
|
|
15806
15842
|
timeoutMessage: defaultToConfig2,
|
|
15807
15843
|
withCredentials: defaultToConfig2,
|
|
15844
|
+
withXSRFToken: defaultToConfig2,
|
|
15808
15845
|
adapter: defaultToConfig2,
|
|
15809
15846
|
responseType: defaultToConfig2,
|
|
15810
15847
|
xsrfCookieName: defaultToConfig2,
|
|
@@ -15942,7 +15979,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
15942
15979
|
/* harmony import */ var _transitional_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./transitional.js */ "./node_modules/axios/lib/defaults/transitional.js");
|
|
15943
15980
|
/* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../helpers/toFormData.js */ "./node_modules/axios/lib/helpers/toFormData.js");
|
|
15944
15981
|
/* harmony import */ var _helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers/toURLEncodedForm.js */ "./node_modules/axios/lib/helpers/toURLEncodedForm.js");
|
|
15945
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../platform/index.js */ "./node_modules/axios/lib/platform/
|
|
15982
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../platform/index.js */ "./node_modules/axios/lib/platform/index.js");
|
|
15946
15983
|
/* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../helpers/formDataToJSON.js */ "./node_modules/axios/lib/helpers/formDataToJSON.js");
|
|
15947
15984
|
|
|
15948
15985
|
|
|
@@ -15997,9 +16034,6 @@ const defaults = {
|
|
|
15997
16034
|
const isFormData = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isFormData(data);
|
|
15998
16035
|
|
|
15999
16036
|
if (isFormData) {
|
|
16000
|
-
if (!hasJSONContentType) {
|
|
16001
|
-
return data;
|
|
16002
|
-
}
|
|
16003
16037
|
return hasJSONContentType ? JSON.stringify((0,_helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_2__["default"])(data)) : data;
|
|
16004
16038
|
}
|
|
16005
16039
|
|
|
@@ -16140,7 +16174,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16140
16174
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16141
16175
|
/* harmony export */ VERSION: () => (/* binding */ VERSION)
|
|
16142
16176
|
/* harmony export */ });
|
|
16143
|
-
const VERSION = "1.
|
|
16177
|
+
const VERSION = "1.6.8";
|
|
16144
16178
|
|
|
16145
16179
|
/***/ }),
|
|
16146
16180
|
|
|
@@ -16429,7 +16463,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16429
16463
|
*/
|
|
16430
16464
|
function combineURLs(baseURL, relativeURL) {
|
|
16431
16465
|
return relativeURL
|
|
16432
|
-
? baseURL.replace(
|
|
16466
|
+
? baseURL.replace(/\/?\/$/, '') + '/' + relativeURL.replace(/^\/+/, '')
|
|
16433
16467
|
: baseURL;
|
|
16434
16468
|
}
|
|
16435
16469
|
|
|
@@ -16448,59 +16482,49 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16448
16482
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
16449
16483
|
/* harmony export */ });
|
|
16450
16484
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../utils.js */ "./node_modules/axios/lib/utils.js");
|
|
16451
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "./node_modules/axios/lib/platform/
|
|
16485
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "./node_modules/axios/lib/platform/index.js");
|
|
16452
16486
|
|
|
16453
16487
|
|
|
16454
16488
|
|
|
16489
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_platform_index_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasStandardBrowserEnv ?
|
|
16455
16490
|
|
|
16491
|
+
// Standard browser envs support document.cookie
|
|
16492
|
+
{
|
|
16493
|
+
write(name, value, expires, path, domain, secure) {
|
|
16494
|
+
const cookie = [name + '=' + encodeURIComponent(value)];
|
|
16456
16495
|
|
|
16457
|
-
|
|
16496
|
+
_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isNumber(expires) && cookie.push('expires=' + new Date(expires).toGMTString());
|
|
16458
16497
|
|
|
16459
|
-
|
|
16460
|
-
(function standardBrowserEnv() {
|
|
16461
|
-
return {
|
|
16462
|
-
write: function write(name, value, expires, path, domain, secure) {
|
|
16463
|
-
const cookie = [];
|
|
16464
|
-
cookie.push(name + '=' + encodeURIComponent(value));
|
|
16498
|
+
_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isString(path) && cookie.push('path=' + path);
|
|
16465
16499
|
|
|
16466
|
-
|
|
16467
|
-
cookie.push('expires=' + new Date(expires).toGMTString());
|
|
16468
|
-
}
|
|
16500
|
+
_utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].isString(domain) && cookie.push('domain=' + domain);
|
|
16469
16501
|
|
|
16470
|
-
|
|
16471
|
-
cookie.push('path=' + path);
|
|
16472
|
-
}
|
|
16502
|
+
secure === true && cookie.push('secure');
|
|
16473
16503
|
|
|
16474
|
-
|
|
16475
|
-
|
|
16476
|
-
}
|
|
16504
|
+
document.cookie = cookie.join('; ');
|
|
16505
|
+
},
|
|
16477
16506
|
|
|
16478
|
-
|
|
16479
|
-
|
|
16480
|
-
|
|
16507
|
+
read(name) {
|
|
16508
|
+
const match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)'));
|
|
16509
|
+
return (match ? decodeURIComponent(match[3]) : null);
|
|
16510
|
+
},
|
|
16481
16511
|
|
|
16482
|
-
|
|
16483
|
-
|
|
16512
|
+
remove(name) {
|
|
16513
|
+
this.write(name, '', Date.now() - 86400000);
|
|
16514
|
+
}
|
|
16515
|
+
}
|
|
16484
16516
|
|
|
16485
|
-
|
|
16486
|
-
const match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)'));
|
|
16487
|
-
return (match ? decodeURIComponent(match[3]) : null);
|
|
16488
|
-
},
|
|
16517
|
+
:
|
|
16489
16518
|
|
|
16490
|
-
|
|
16491
|
-
|
|
16492
|
-
|
|
16493
|
-
|
|
16494
|
-
|
|
16519
|
+
// Non-standard browser env (web workers, react-native) lack needed support.
|
|
16520
|
+
{
|
|
16521
|
+
write() {},
|
|
16522
|
+
read() {
|
|
16523
|
+
return null;
|
|
16524
|
+
},
|
|
16525
|
+
remove() {}
|
|
16526
|
+
});
|
|
16495
16527
|
|
|
16496
|
-
// Non standard browser env (web workers, react-native) lack needed support.
|
|
16497
|
-
(function nonStandardBrowserEnv() {
|
|
16498
|
-
return {
|
|
16499
|
-
write: function write() {},
|
|
16500
|
-
read: function read() { return null; },
|
|
16501
|
-
remove: function remove() {}
|
|
16502
|
-
};
|
|
16503
|
-
})());
|
|
16504
16528
|
|
|
16505
16529
|
|
|
16506
16530
|
/***/ }),
|
|
@@ -16568,6 +16592,9 @@ function arrayToObject(arr) {
|
|
|
16568
16592
|
function formDataToJSON(formData) {
|
|
16569
16593
|
function buildPath(path, value, target, index) {
|
|
16570
16594
|
let name = path[index++];
|
|
16595
|
+
|
|
16596
|
+
if (name === '__proto__') return true;
|
|
16597
|
+
|
|
16571
16598
|
const isNumericKey = Number.isFinite(+name);
|
|
16572
16599
|
const isLast = index >= path.length;
|
|
16573
16600
|
name = !name && _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(target) ? target.length : name;
|
|
@@ -16685,13 +16712,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16685
16712
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
16686
16713
|
/* harmony export */ });
|
|
16687
16714
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../utils.js */ "./node_modules/axios/lib/utils.js");
|
|
16688
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "./node_modules/axios/lib/platform/
|
|
16715
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "./node_modules/axios/lib/platform/index.js");
|
|
16689
16716
|
|
|
16690
16717
|
|
|
16691
16718
|
|
|
16692
16719
|
|
|
16693
16720
|
|
|
16694
|
-
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_platform_index_js__WEBPACK_IMPORTED_MODULE_0__["default"].
|
|
16721
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_platform_index_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasStandardBrowserEnv ?
|
|
16695
16722
|
|
|
16696
16723
|
// Standard browser envs have full support of the APIs needed to test
|
|
16697
16724
|
// whether the request URL is of the same origin as current location.
|
|
@@ -16701,7 +16728,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16701
16728
|
let originURL;
|
|
16702
16729
|
|
|
16703
16730
|
/**
|
|
16704
|
-
* Parse a URL to discover
|
|
16731
|
+
* Parse a URL to discover its components
|
|
16705
16732
|
*
|
|
16706
16733
|
* @param {String} url The URL to be parsed
|
|
16707
16734
|
* @returns {Object}
|
|
@@ -17229,7 +17256,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17229
17256
|
/* harmony export */ });
|
|
17230
17257
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "./node_modules/axios/lib/utils.js");
|
|
17231
17258
|
/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "./node_modules/axios/lib/helpers/toFormData.js");
|
|
17232
|
-
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ "./node_modules/axios/lib/platform/
|
|
17259
|
+
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ "./node_modules/axios/lib/platform/index.js");
|
|
17233
17260
|
|
|
17234
17261
|
|
|
17235
17262
|
|
|
@@ -17434,6 +17461,34 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17434
17461
|
|
|
17435
17462
|
|
|
17436
17463
|
|
|
17464
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
17465
|
+
isBrowser: true,
|
|
17466
|
+
classes: {
|
|
17467
|
+
URLSearchParams: _classes_URLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__["default"],
|
|
17468
|
+
FormData: _classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__["default"],
|
|
17469
|
+
Blob: _classes_Blob_js__WEBPACK_IMPORTED_MODULE_2__["default"]
|
|
17470
|
+
},
|
|
17471
|
+
protocols: ['http', 'https', 'file', 'blob', 'url', 'data']
|
|
17472
|
+
});
|
|
17473
|
+
|
|
17474
|
+
|
|
17475
|
+
/***/ }),
|
|
17476
|
+
|
|
17477
|
+
/***/ "./node_modules/axios/lib/platform/common/utils.js":
|
|
17478
|
+
/*!*********************************************************!*\
|
|
17479
|
+
!*** ./node_modules/axios/lib/platform/common/utils.js ***!
|
|
17480
|
+
\*********************************************************/
|
|
17481
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
17482
|
+
|
|
17483
|
+
"use strict";
|
|
17484
|
+
__webpack_require__.r(__webpack_exports__);
|
|
17485
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
17486
|
+
/* harmony export */ hasBrowserEnv: () => (/* binding */ hasBrowserEnv),
|
|
17487
|
+
/* harmony export */ hasStandardBrowserEnv: () => (/* binding */ hasStandardBrowserEnv),
|
|
17488
|
+
/* harmony export */ hasStandardBrowserWebWorkerEnv: () => (/* binding */ hasStandardBrowserWebWorkerEnv)
|
|
17489
|
+
/* harmony export */ });
|
|
17490
|
+
const hasBrowserEnv = typeof window !== 'undefined' && typeof document !== 'undefined';
|
|
17491
|
+
|
|
17437
17492
|
/**
|
|
17438
17493
|
* Determine if we're running in a standard browser environment
|
|
17439
17494
|
*
|
|
@@ -17451,18 +17506,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17451
17506
|
*
|
|
17452
17507
|
* @returns {boolean}
|
|
17453
17508
|
*/
|
|
17454
|
-
const
|
|
17455
|
-
|
|
17456
|
-
|
|
17457
|
-
|
|
17458
|
-
product === 'NativeScript' ||
|
|
17459
|
-
product === 'NS')
|
|
17460
|
-
) {
|
|
17461
|
-
return false;
|
|
17462
|
-
}
|
|
17463
|
-
|
|
17464
|
-
return typeof window !== 'undefined' && typeof document !== 'undefined';
|
|
17465
|
-
})();
|
|
17509
|
+
const hasStandardBrowserEnv = (
|
|
17510
|
+
(product) => {
|
|
17511
|
+
return hasBrowserEnv && ['ReactNative', 'NativeScript', 'NS'].indexOf(product) < 0
|
|
17512
|
+
})(typeof navigator !== 'undefined' && navigator.product);
|
|
17466
17513
|
|
|
17467
17514
|
/**
|
|
17468
17515
|
* Determine if we're running in a standard browser webWorker environment
|
|
@@ -17473,7 +17520,7 @@ const isStandardBrowserEnv = (() => {
|
|
|
17473
17520
|
* `typeof window !== 'undefined' && typeof document !== 'undefined'`.
|
|
17474
17521
|
* This leads to a problem when axios post `FormData` in webWorker
|
|
17475
17522
|
*/
|
|
17476
|
-
|
|
17523
|
+
const hasStandardBrowserWebWorkerEnv = (() => {
|
|
17477
17524
|
return (
|
|
17478
17525
|
typeof WorkerGlobalScope !== 'undefined' &&
|
|
17479
17526
|
// eslint-disable-next-line no-undef
|
|
@@ -17483,16 +17530,29 @@ const isStandardBrowserEnv = (() => {
|
|
|
17483
17530
|
})();
|
|
17484
17531
|
|
|
17485
17532
|
|
|
17533
|
+
|
|
17534
|
+
|
|
17535
|
+
/***/ }),
|
|
17536
|
+
|
|
17537
|
+
/***/ "./node_modules/axios/lib/platform/index.js":
|
|
17538
|
+
/*!**************************************************!*\
|
|
17539
|
+
!*** ./node_modules/axios/lib/platform/index.js ***!
|
|
17540
|
+
\**************************************************/
|
|
17541
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
17542
|
+
|
|
17543
|
+
"use strict";
|
|
17544
|
+
__webpack_require__.r(__webpack_exports__);
|
|
17545
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
17546
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
17547
|
+
/* harmony export */ });
|
|
17548
|
+
/* harmony import */ var _node_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node/index.js */ "./node_modules/axios/lib/platform/browser/index.js");
|
|
17549
|
+
/* harmony import */ var _common_utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./common/utils.js */ "./node_modules/axios/lib/platform/common/utils.js");
|
|
17550
|
+
|
|
17551
|
+
|
|
17552
|
+
|
|
17486
17553
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
17487
|
-
|
|
17488
|
-
|
|
17489
|
-
URLSearchParams: _classes_URLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__["default"],
|
|
17490
|
-
FormData: _classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__["default"],
|
|
17491
|
-
Blob: _classes_Blob_js__WEBPACK_IMPORTED_MODULE_2__["default"]
|
|
17492
|
-
},
|
|
17493
|
-
isStandardBrowserEnv,
|
|
17494
|
-
isStandardBrowserWebWorkerEnv,
|
|
17495
|
-
protocols: ['http', 'https', 'file', 'blob', 'url', 'data']
|
|
17554
|
+
..._common_utils_js__WEBPACK_IMPORTED_MODULE_0__,
|
|
17555
|
+
..._node_index_js__WEBPACK_IMPORTED_MODULE_1__["default"]
|
|
17496
17556
|
});
|
|
17497
17557
|
|
|
17498
17558
|
|
|
@@ -18302,12 +18362,12 @@ var __webpack_exports__ = {};
|
|
|
18302
18362
|
\***********************/
|
|
18303
18363
|
__webpack_require__.r(__webpack_exports__);
|
|
18304
18364
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
18305
|
-
/* harmony export */ axios: () => (/* reexport safe */
|
|
18365
|
+
/* harmony export */ axios: () => (/* reexport safe */ axios__WEBPACK_IMPORTED_MODULE_24__["default"]),
|
|
18306
18366
|
/* harmony export */ bbn: () => (/* binding */ bbn),
|
|
18307
18367
|
/* harmony export */ dayjs: () => (/* reexport default export from named module */ dayjs__WEBPACK_IMPORTED_MODULE_0__),
|
|
18308
18368
|
/* harmony export */ "default": () => (/* binding */ bbn)
|
|
18309
18369
|
/* harmony export */ });
|
|
18310
|
-
/* harmony import */ var
|
|
18370
|
+
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! axios */ "./node_modules/axios/lib/axios.js");
|
|
18311
18371
|
/* harmony import */ var dayjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! dayjs */ "./node_modules/dayjs/dayjs.min.js");
|
|
18312
18372
|
/* harmony import */ var dayjs_plugin_calendar_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! dayjs/plugin/calendar.js */ "./node_modules/dayjs/plugin/calendar.js");
|
|
18313
18373
|
/* harmony import */ var dayjs_plugin_dayOfYear_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! dayjs/plugin/dayOfYear.js */ "./node_modules/dayjs/plugin/dayOfYear.js");
|
|
@@ -18323,14 +18383,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18323
18383
|
/* harmony import */ var dayjs_plugin_timezone_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! dayjs/plugin/timezone.js */ "./node_modules/dayjs/plugin/timezone.js");
|
|
18324
18384
|
/* harmony import */ var dayjs_plugin_updateLocale_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! dayjs/plugin/updateLocale.js */ "./node_modules/dayjs/plugin/updateLocale.js");
|
|
18325
18385
|
/* harmony import */ var dayjs_plugin_utc_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! dayjs/plugin/utc.js */ "./node_modules/dayjs/plugin/utc.js");
|
|
18326
|
-
/* harmony import */ var
|
|
18327
|
-
/* harmony import */ var
|
|
18328
|
-
/* harmony import */ var
|
|
18329
|
-
/* harmony import */ var
|
|
18330
|
-
/* harmony import */ var
|
|
18331
|
-
/* harmony import */ var
|
|
18332
|
-
/* harmony import */ var
|
|
18333
|
-
/* harmony import */ var
|
|
18386
|
+
/* harmony import */ var dayjs_plugin_weekday_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! dayjs/plugin/weekday.js */ "./node_modules/dayjs/plugin/weekday.js");
|
|
18387
|
+
/* harmony import */ var dayjs_plugin_weekOfYear_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! dayjs/plugin/weekOfYear.js */ "./node_modules/dayjs/plugin/weekOfYear.js");
|
|
18388
|
+
/* harmony import */ var _js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./_.js */ "./dist/_.js");
|
|
18389
|
+
/* harmony import */ var _$_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./$.js */ "./dist/$.js");
|
|
18390
|
+
/* harmony import */ var _lng_js__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./lng.js */ "./dist/lng.js");
|
|
18391
|
+
/* harmony import */ var _vars_js__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./vars.js */ "./dist/vars.js");
|
|
18392
|
+
/* harmony import */ var _env_js__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./env.js */ "./dist/env.js");
|
|
18393
|
+
/* harmony import */ var _db_js__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./db.js */ "./dist/db.js");
|
|
18394
|
+
/* harmony import */ var _fn_js__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./fn.js */ "./dist/fn.js");
|
|
18395
|
+
|
|
18334
18396
|
|
|
18335
18397
|
|
|
18336
18398
|
|
|
@@ -18362,7 +18424,8 @@ dayjs__WEBPACK_IMPORTED_MODULE_0__.extend(dayjs_plugin_relativeTime_js__WEBPACK_
|
|
|
18362
18424
|
dayjs__WEBPACK_IMPORTED_MODULE_0__.extend(dayjs_plugin_timezone_js__WEBPACK_IMPORTED_MODULE_12__);
|
|
18363
18425
|
dayjs__WEBPACK_IMPORTED_MODULE_0__.extend(dayjs_plugin_updateLocale_js__WEBPACK_IMPORTED_MODULE_13__);
|
|
18364
18426
|
dayjs__WEBPACK_IMPORTED_MODULE_0__.extend(dayjs_plugin_utc_js__WEBPACK_IMPORTED_MODULE_14__);
|
|
18365
|
-
dayjs__WEBPACK_IMPORTED_MODULE_0__.extend(
|
|
18427
|
+
dayjs__WEBPACK_IMPORTED_MODULE_0__.extend(dayjs_plugin_weekday_js__WEBPACK_IMPORTED_MODULE_15__);
|
|
18428
|
+
dayjs__WEBPACK_IMPORTED_MODULE_0__.extend(dayjs_plugin_weekOfYear_js__WEBPACK_IMPORTED_MODULE_16__);
|
|
18366
18429
|
|
|
18367
18430
|
|
|
18368
18431
|
|
|
@@ -18376,16 +18439,16 @@ var bbn = {
|
|
|
18376
18439
|
_cat: {}
|
|
18377
18440
|
},
|
|
18378
18441
|
app: {},
|
|
18379
|
-
_:
|
|
18380
|
-
$: _$
|
|
18381
|
-
lng:
|
|
18382
|
-
var:
|
|
18383
|
-
env:
|
|
18384
|
-
db:
|
|
18385
|
-
fn:
|
|
18442
|
+
_: _js__WEBPACK_IMPORTED_MODULE_17__._,
|
|
18443
|
+
$: _$_js__WEBPACK_IMPORTED_MODULE_18__.$,
|
|
18444
|
+
lng: _lng_js__WEBPACK_IMPORTED_MODULE_19__.lng,
|
|
18445
|
+
var: _vars_js__WEBPACK_IMPORTED_MODULE_20__.vars,
|
|
18446
|
+
env: _env_js__WEBPACK_IMPORTED_MODULE_21__.env,
|
|
18447
|
+
db: _db_js__WEBPACK_IMPORTED_MODULE_22__.db,
|
|
18448
|
+
fn: _fn_js__WEBPACK_IMPORTED_MODULE_23__.fn
|
|
18386
18449
|
};
|
|
18387
18450
|
if ('undefined' !== typeof window) {
|
|
18388
|
-
window.axios =
|
|
18451
|
+
window.axios = axios__WEBPACK_IMPORTED_MODULE_24__["default"];
|
|
18389
18452
|
window.dayjs = dayjs__WEBPACK_IMPORTED_MODULE_0__;
|
|
18390
18453
|
window.bbn = bbn;
|
|
18391
18454
|
}
|