Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-inclu.../js/dist
File: compose.js
*
[2000] Fix | Delete
* TODO: actually remove this from the _callbacks dictionary instead
[2001] Fix | Delete
* of binding an empty function
[2002] Fix | Delete
*
[2003] Fix | Delete
* the keycombo+action has to be exactly the same as
[2004] Fix | Delete
* it was defined in the bind method
[2005] Fix | Delete
*
[2006] Fix | Delete
* @param {string|Array} keys
[2007] Fix | Delete
* @param {string} action
[2008] Fix | Delete
* @returns void
[2009] Fix | Delete
*/
[2010] Fix | Delete
Mousetrap.prototype.unbind = function(keys, action) {
[2011] Fix | Delete
var self = this;
[2012] Fix | Delete
return self.bind.call(self, keys, function() {}, action);
[2013] Fix | Delete
};
[2014] Fix | Delete
[2015] Fix | Delete
/**
[2016] Fix | Delete
* triggers an event that has already been bound
[2017] Fix | Delete
*
[2018] Fix | Delete
* @param {string} keys
[2019] Fix | Delete
* @param {string=} action
[2020] Fix | Delete
* @returns void
[2021] Fix | Delete
*/
[2022] Fix | Delete
Mousetrap.prototype.trigger = function(keys, action) {
[2023] Fix | Delete
var self = this;
[2024] Fix | Delete
if (self._directMap[keys + ':' + action]) {
[2025] Fix | Delete
self._directMap[keys + ':' + action]({}, keys);
[2026] Fix | Delete
}
[2027] Fix | Delete
return self;
[2028] Fix | Delete
};
[2029] Fix | Delete
[2030] Fix | Delete
/**
[2031] Fix | Delete
* resets the library back to its initial state. this is useful
[2032] Fix | Delete
* if you want to clear out the current keyboard shortcuts and bind
[2033] Fix | Delete
* new ones - for example if you switch to another page
[2034] Fix | Delete
*
[2035] Fix | Delete
* @returns void
[2036] Fix | Delete
*/
[2037] Fix | Delete
Mousetrap.prototype.reset = function() {
[2038] Fix | Delete
var self = this;
[2039] Fix | Delete
self._callbacks = {};
[2040] Fix | Delete
self._directMap = {};
[2041] Fix | Delete
return self;
[2042] Fix | Delete
};
[2043] Fix | Delete
[2044] Fix | Delete
/**
[2045] Fix | Delete
* should we stop this event before firing off callbacks
[2046] Fix | Delete
*
[2047] Fix | Delete
* @param {Event} e
[2048] Fix | Delete
* @param {Element} element
[2049] Fix | Delete
* @return {boolean}
[2050] Fix | Delete
*/
[2051] Fix | Delete
Mousetrap.prototype.stopCallback = function(e, element) {
[2052] Fix | Delete
var self = this;
[2053] Fix | Delete
[2054] Fix | Delete
// if the element has the class "mousetrap" then no need to stop
[2055] Fix | Delete
if ((' ' + element.className + ' ').indexOf(' mousetrap ') > -1) {
[2056] Fix | Delete
return false;
[2057] Fix | Delete
}
[2058] Fix | Delete
[2059] Fix | Delete
if (_belongsTo(element, self.target)) {
[2060] Fix | Delete
return false;
[2061] Fix | Delete
}
[2062] Fix | Delete
[2063] Fix | Delete
// Events originating from a shadow DOM are re-targetted and `e.target` is the shadow host,
[2064] Fix | Delete
// not the initial event target in the shadow tree. Note that not all events cross the
[2065] Fix | Delete
// shadow boundary.
[2066] Fix | Delete
// For shadow trees with `mode: 'open'`, the initial event target is the first element in
[2067] Fix | Delete
// the event’s composed path. For shadow trees with `mode: 'closed'`, the initial event
[2068] Fix | Delete
// target cannot be obtained.
[2069] Fix | Delete
if ('composedPath' in e && typeof e.composedPath === 'function') {
[2070] Fix | Delete
// For open shadow trees, update `element` so that the following check works.
[2071] Fix | Delete
var initialEventTarget = e.composedPath()[0];
[2072] Fix | Delete
if (initialEventTarget !== e.target) {
[2073] Fix | Delete
element = initialEventTarget;
[2074] Fix | Delete
}
[2075] Fix | Delete
}
[2076] Fix | Delete
[2077] Fix | Delete
// stop for input, select, and textarea
[2078] Fix | Delete
return element.tagName == 'INPUT' || element.tagName == 'SELECT' || element.tagName == 'TEXTAREA' || element.isContentEditable;
[2079] Fix | Delete
};
[2080] Fix | Delete
[2081] Fix | Delete
/**
[2082] Fix | Delete
* exposes _handleKey publicly so it can be overwritten by extensions
[2083] Fix | Delete
*/
[2084] Fix | Delete
Mousetrap.prototype.handleKey = function() {
[2085] Fix | Delete
var self = this;
[2086] Fix | Delete
return self._handleKey.apply(self, arguments);
[2087] Fix | Delete
};
[2088] Fix | Delete
[2089] Fix | Delete
/**
[2090] Fix | Delete
* allow custom key mappings
[2091] Fix | Delete
*/
[2092] Fix | Delete
Mousetrap.addKeycodes = function(object) {
[2093] Fix | Delete
for (var key in object) {
[2094] Fix | Delete
if (object.hasOwnProperty(key)) {
[2095] Fix | Delete
_MAP[key] = object[key];
[2096] Fix | Delete
}
[2097] Fix | Delete
}
[2098] Fix | Delete
_REVERSE_MAP = null;
[2099] Fix | Delete
};
[2100] Fix | Delete
[2101] Fix | Delete
/**
[2102] Fix | Delete
* Init the global mousetrap functions
[2103] Fix | Delete
*
[2104] Fix | Delete
* This method is needed to allow the global mousetrap functions to work
[2105] Fix | Delete
* now that mousetrap is a constructor function.
[2106] Fix | Delete
*/
[2107] Fix | Delete
Mousetrap.init = function() {
[2108] Fix | Delete
var documentMousetrap = Mousetrap(document);
[2109] Fix | Delete
for (var method in documentMousetrap) {
[2110] Fix | Delete
if (method.charAt(0) !== '_') {
[2111] Fix | Delete
Mousetrap[method] = (function(method) {
[2112] Fix | Delete
return function() {
[2113] Fix | Delete
return documentMousetrap[method].apply(documentMousetrap, arguments);
[2114] Fix | Delete
};
[2115] Fix | Delete
} (method));
[2116] Fix | Delete
}
[2117] Fix | Delete
}
[2118] Fix | Delete
};
[2119] Fix | Delete
[2120] Fix | Delete
Mousetrap.init();
[2121] Fix | Delete
[2122] Fix | Delete
// expose mousetrap to the global object
[2123] Fix | Delete
window.Mousetrap = Mousetrap;
[2124] Fix | Delete
[2125] Fix | Delete
// expose as a common js module
[2126] Fix | Delete
if ( true && module.exports) {
[2127] Fix | Delete
module.exports = Mousetrap;
[2128] Fix | Delete
}
[2129] Fix | Delete
[2130] Fix | Delete
// expose mousetrap as an AMD module
[2131] Fix | Delete
if (true) {
[2132] Fix | Delete
!(__WEBPACK_AMD_DEFINE_RESULT__ = (function() {
[2133] Fix | Delete
return Mousetrap;
[2134] Fix | Delete
}).call(exports, __webpack_require__, exports, module),
[2135] Fix | Delete
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
[2136] Fix | Delete
}
[2137] Fix | Delete
}) (typeof window !== 'undefined' ? window : null, typeof window !== 'undefined' ? document : null);
[2138] Fix | Delete
[2139] Fix | Delete
[2140] Fix | Delete
/***/ }),
[2141] Fix | Delete
[2142] Fix | Delete
/***/ 5760:
[2143] Fix | Delete
/***/ (() => {
[2144] Fix | Delete
[2145] Fix | Delete
/**
[2146] Fix | Delete
* adds a bindGlobal method to Mousetrap that allows you to
[2147] Fix | Delete
* bind specific keyboard shortcuts that will still work
[2148] Fix | Delete
* inside a text input field
[2149] Fix | Delete
*
[2150] Fix | Delete
* usage:
[2151] Fix | Delete
* Mousetrap.bindGlobal('ctrl+s', _saveChanges);
[2152] Fix | Delete
*/
[2153] Fix | Delete
/* global Mousetrap:true */
[2154] Fix | Delete
(function(Mousetrap) {
[2155] Fix | Delete
if (! Mousetrap) {
[2156] Fix | Delete
return;
[2157] Fix | Delete
}
[2158] Fix | Delete
var _globalCallbacks = {};
[2159] Fix | Delete
var _originalStopCallback = Mousetrap.prototype.stopCallback;
[2160] Fix | Delete
[2161] Fix | Delete
Mousetrap.prototype.stopCallback = function(e, element, combo, sequence) {
[2162] Fix | Delete
var self = this;
[2163] Fix | Delete
[2164] Fix | Delete
if (self.paused) {
[2165] Fix | Delete
return true;
[2166] Fix | Delete
}
[2167] Fix | Delete
[2168] Fix | Delete
if (_globalCallbacks[combo] || _globalCallbacks[sequence]) {
[2169] Fix | Delete
return false;
[2170] Fix | Delete
}
[2171] Fix | Delete
[2172] Fix | Delete
return _originalStopCallback.call(self, e, element, combo);
[2173] Fix | Delete
};
[2174] Fix | Delete
[2175] Fix | Delete
Mousetrap.prototype.bindGlobal = function(keys, callback, action) {
[2176] Fix | Delete
var self = this;
[2177] Fix | Delete
self.bind(keys, callback, action);
[2178] Fix | Delete
[2179] Fix | Delete
if (keys instanceof Array) {
[2180] Fix | Delete
for (var i = 0; i < keys.length; i++) {
[2181] Fix | Delete
_globalCallbacks[keys[i]] = true;
[2182] Fix | Delete
}
[2183] Fix | Delete
return;
[2184] Fix | Delete
}
[2185] Fix | Delete
[2186] Fix | Delete
_globalCallbacks[keys] = true;
[2187] Fix | Delete
};
[2188] Fix | Delete
[2189] Fix | Delete
Mousetrap.init();
[2190] Fix | Delete
}) (typeof Mousetrap !== "undefined" ? Mousetrap : undefined);
[2191] Fix | Delete
[2192] Fix | Delete
[2193] Fix | Delete
/***/ }),
[2194] Fix | Delete
[2195] Fix | Delete
/***/ 923:
[2196] Fix | Delete
/***/ ((module) => {
[2197] Fix | Delete
[2198] Fix | Delete
"use strict";
[2199] Fix | Delete
module.exports = window["wp"]["isShallowEqual"];
[2200] Fix | Delete
[2201] Fix | Delete
/***/ })
[2202] Fix | Delete
[2203] Fix | Delete
/******/ });
[2204] Fix | Delete
/************************************************************************/
[2205] Fix | Delete
/******/ // The module cache
[2206] Fix | Delete
/******/ var __webpack_module_cache__ = {};
[2207] Fix | Delete
/******/
[2208] Fix | Delete
/******/ // The require function
[2209] Fix | Delete
/******/ function __webpack_require__(moduleId) {
[2210] Fix | Delete
/******/ // Check if module is in cache
[2211] Fix | Delete
/******/ var cachedModule = __webpack_module_cache__[moduleId];
[2212] Fix | Delete
/******/ if (cachedModule !== undefined) {
[2213] Fix | Delete
/******/ return cachedModule.exports;
[2214] Fix | Delete
/******/ }
[2215] Fix | Delete
/******/ // Create a new module (and put it into the cache)
[2216] Fix | Delete
/******/ var module = __webpack_module_cache__[moduleId] = {
[2217] Fix | Delete
/******/ // no module.id needed
[2218] Fix | Delete
/******/ // no module.loaded needed
[2219] Fix | Delete
/******/ exports: {}
[2220] Fix | Delete
/******/ };
[2221] Fix | Delete
/******/
[2222] Fix | Delete
/******/ // Execute the module function
[2223] Fix | Delete
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
[2224] Fix | Delete
/******/
[2225] Fix | Delete
/******/ // Return the exports of the module
[2226] Fix | Delete
/******/ return module.exports;
[2227] Fix | Delete
/******/ }
[2228] Fix | Delete
/******/
[2229] Fix | Delete
/************************************************************************/
[2230] Fix | Delete
/******/ /* webpack/runtime/compat get default export */
[2231] Fix | Delete
/******/ (() => {
[2232] Fix | Delete
/******/ // getDefaultExport function for compatibility with non-harmony modules
[2233] Fix | Delete
/******/ __webpack_require__.n = (module) => {
[2234] Fix | Delete
/******/ var getter = module && module.__esModule ?
[2235] Fix | Delete
/******/ () => (module['default']) :
[2236] Fix | Delete
/******/ () => (module);
[2237] Fix | Delete
/******/ __webpack_require__.d(getter, { a: getter });
[2238] Fix | Delete
/******/ return getter;
[2239] Fix | Delete
/******/ };
[2240] Fix | Delete
/******/ })();
[2241] Fix | Delete
/******/
[2242] Fix | Delete
/******/ /* webpack/runtime/define property getters */
[2243] Fix | Delete
/******/ (() => {
[2244] Fix | Delete
/******/ // define getter functions for harmony exports
[2245] Fix | Delete
/******/ __webpack_require__.d = (exports, definition) => {
[2246] Fix | Delete
/******/ for(var key in definition) {
[2247] Fix | Delete
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
[2248] Fix | Delete
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
[2249] Fix | Delete
/******/ }
[2250] Fix | Delete
/******/ }
[2251] Fix | Delete
/******/ };
[2252] Fix | Delete
/******/ })();
[2253] Fix | Delete
/******/
[2254] Fix | Delete
/******/ /* webpack/runtime/hasOwnProperty shorthand */
[2255] Fix | Delete
/******/ (() => {
[2256] Fix | Delete
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
[2257] Fix | Delete
/******/ })();
[2258] Fix | Delete
/******/
[2259] Fix | Delete
/******/ /* webpack/runtime/make namespace object */
[2260] Fix | Delete
/******/ (() => {
[2261] Fix | Delete
/******/ // define __esModule on exports
[2262] Fix | Delete
/******/ __webpack_require__.r = (exports) => {
[2263] Fix | Delete
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
[2264] Fix | Delete
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
[2265] Fix | Delete
/******/ }
[2266] Fix | Delete
/******/ Object.defineProperty(exports, '__esModule', { value: true });
[2267] Fix | Delete
/******/ };
[2268] Fix | Delete
/******/ })();
[2269] Fix | Delete
/******/
[2270] Fix | Delete
/************************************************************************/
[2271] Fix | Delete
var __webpack_exports__ = {};
[2272] Fix | Delete
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
[2273] Fix | Delete
(() => {
[2274] Fix | Delete
"use strict";
[2275] Fix | Delete
// ESM COMPAT FLAG
[2276] Fix | Delete
__webpack_require__.r(__webpack_exports__);
[2277] Fix | Delete
[2278] Fix | Delete
// EXPORTS
[2279] Fix | Delete
__webpack_require__.d(__webpack_exports__, {
[2280] Fix | Delete
__experimentalUseDialog: () => (/* reexport */ use_dialog),
[2281] Fix | Delete
__experimentalUseDragging: () => (/* reexport */ useDragging),
[2282] Fix | Delete
__experimentalUseDropZone: () => (/* reexport */ useDropZone),
[2283] Fix | Delete
__experimentalUseFixedWindowList: () => (/* reexport */ useFixedWindowList),
[2284] Fix | Delete
__experimentalUseFocusOutside: () => (/* reexport */ useFocusOutside),
[2285] Fix | Delete
compose: () => (/* reexport */ higher_order_compose),
[2286] Fix | Delete
createHigherOrderComponent: () => (/* reexport */ createHigherOrderComponent),
[2287] Fix | Delete
debounce: () => (/* reexport */ debounce),
[2288] Fix | Delete
ifCondition: () => (/* reexport */ if_condition),
[2289] Fix | Delete
observableMap: () => (/* reexport */ observableMap),
[2290] Fix | Delete
pipe: () => (/* reexport */ higher_order_pipe),
[2291] Fix | Delete
pure: () => (/* reexport */ higher_order_pure),
[2292] Fix | Delete
throttle: () => (/* reexport */ throttle),
[2293] Fix | Delete
useAsyncList: () => (/* reexport */ use_async_list),
[2294] Fix | Delete
useConstrainedTabbing: () => (/* reexport */ use_constrained_tabbing),
[2295] Fix | Delete
useCopyOnClick: () => (/* reexport */ useCopyOnClick),
[2296] Fix | Delete
useCopyToClipboard: () => (/* reexport */ useCopyToClipboard),
[2297] Fix | Delete
useDebounce: () => (/* reexport */ useDebounce),
[2298] Fix | Delete
useDebouncedInput: () => (/* reexport */ useDebouncedInput),
[2299] Fix | Delete
useDisabled: () => (/* reexport */ useDisabled),
[2300] Fix | Delete
useFocusOnMount: () => (/* reexport */ useFocusOnMount),
[2301] Fix | Delete
useFocusReturn: () => (/* reexport */ use_focus_return),
[2302] Fix | Delete
useFocusableIframe: () => (/* reexport */ useFocusableIframe),
[2303] Fix | Delete
useInstanceId: () => (/* reexport */ use_instance_id),
[2304] Fix | Delete
useIsomorphicLayoutEffect: () => (/* reexport */ use_isomorphic_layout_effect),
[2305] Fix | Delete
useKeyboardShortcut: () => (/* reexport */ use_keyboard_shortcut),
[2306] Fix | Delete
useMediaQuery: () => (/* reexport */ useMediaQuery),
[2307] Fix | Delete
useMergeRefs: () => (/* reexport */ useMergeRefs),
[2308] Fix | Delete
useObservableValue: () => (/* reexport */ useObservableValue),
[2309] Fix | Delete
usePrevious: () => (/* reexport */ usePrevious),
[2310] Fix | Delete
useReducedMotion: () => (/* reexport */ use_reduced_motion),
[2311] Fix | Delete
useRefEffect: () => (/* reexport */ useRefEffect),
[2312] Fix | Delete
useResizeObserver: () => (/* reexport */ useResizeAware),
[2313] Fix | Delete
useStateWithHistory: () => (/* reexport */ useStateWithHistory),
[2314] Fix | Delete
useThrottle: () => (/* reexport */ useThrottle),
[2315] Fix | Delete
useViewportMatch: () => (/* reexport */ use_viewport_match),
[2316] Fix | Delete
useWarnOnChange: () => (/* reexport */ use_warn_on_change),
[2317] Fix | Delete
withGlobalEvents: () => (/* reexport */ withGlobalEvents),
[2318] Fix | Delete
withInstanceId: () => (/* reexport */ with_instance_id),
[2319] Fix | Delete
withSafeTimeout: () => (/* reexport */ with_safe_timeout),
[2320] Fix | Delete
withState: () => (/* reexport */ withState)
[2321] Fix | Delete
});
[2322] Fix | Delete
[2323] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/tslib/tslib.es6.mjs
[2324] Fix | Delete
/******************************************************************************
[2325] Fix | Delete
Copyright (c) Microsoft Corporation.
[2326] Fix | Delete
[2327] Fix | Delete
Permission to use, copy, modify, and/or distribute this software for any
[2328] Fix | Delete
purpose with or without fee is hereby granted.
[2329] Fix | Delete
[2330] Fix | Delete
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
[2331] Fix | Delete
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
[2332] Fix | Delete
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
[2333] Fix | Delete
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
[2334] Fix | Delete
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
[2335] Fix | Delete
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[2336] Fix | Delete
PERFORMANCE OF THIS SOFTWARE.
[2337] Fix | Delete
***************************************************************************** */
[2338] Fix | Delete
/* global Reflect, Promise, SuppressedError, Symbol */
[2339] Fix | Delete
[2340] Fix | Delete
var extendStatics = function(d, b) {
[2341] Fix | Delete
extendStatics = Object.setPrototypeOf ||
[2342] Fix | Delete
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
[2343] Fix | Delete
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
[2344] Fix | Delete
return extendStatics(d, b);
[2345] Fix | Delete
};
[2346] Fix | Delete
[2347] Fix | Delete
function __extends(d, b) {
[2348] Fix | Delete
if (typeof b !== "function" && b !== null)
[2349] Fix | Delete
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
[2350] Fix | Delete
extendStatics(d, b);
[2351] Fix | Delete
function __() { this.constructor = d; }
[2352] Fix | Delete
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
[2353] Fix | Delete
}
[2354] Fix | Delete
[2355] Fix | Delete
var __assign = function() {
[2356] Fix | Delete
__assign = Object.assign || function __assign(t) {
[2357] Fix | Delete
for (var s, i = 1, n = arguments.length; i < n; i++) {
[2358] Fix | Delete
s = arguments[i];
[2359] Fix | Delete
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
[2360] Fix | Delete
}
[2361] Fix | Delete
return t;
[2362] Fix | Delete
}
[2363] Fix | Delete
return __assign.apply(this, arguments);
[2364] Fix | Delete
}
[2365] Fix | Delete
[2366] Fix | Delete
function __rest(s, e) {
[2367] Fix | Delete
var t = {};
[2368] Fix | Delete
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
[2369] Fix | Delete
t[p] = s[p];
[2370] Fix | Delete
if (s != null && typeof Object.getOwnPropertySymbols === "function")
[2371] Fix | Delete
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
[2372] Fix | Delete
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
[2373] Fix | Delete
t[p[i]] = s[p[i]];
[2374] Fix | Delete
}
[2375] Fix | Delete
return t;
[2376] Fix | Delete
}
[2377] Fix | Delete
[2378] Fix | Delete
function __decorate(decorators, target, key, desc) {
[2379] Fix | Delete
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
[2380] Fix | Delete
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
[2381] Fix | Delete
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
[2382] Fix | Delete
return c > 3 && r && Object.defineProperty(target, key, r), r;
[2383] Fix | Delete
}
[2384] Fix | Delete
[2385] Fix | Delete
function __param(paramIndex, decorator) {
[2386] Fix | Delete
return function (target, key) { decorator(target, key, paramIndex); }
[2387] Fix | Delete
}
[2388] Fix | Delete
[2389] Fix | Delete
function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
[2390] Fix | Delete
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
[2391] Fix | Delete
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
[2392] Fix | Delete
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
[2393] Fix | Delete
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
[2394] Fix | Delete
var _, done = false;
[2395] Fix | Delete
for (var i = decorators.length - 1; i >= 0; i--) {
[2396] Fix | Delete
var context = {};
[2397] Fix | Delete
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
[2398] Fix | Delete
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
[2399] Fix | Delete
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
[2400] Fix | Delete
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
[2401] Fix | Delete
if (kind === "accessor") {
[2402] Fix | Delete
if (result === void 0) continue;
[2403] Fix | Delete
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
[2404] Fix | Delete
if (_ = accept(result.get)) descriptor.get = _;
[2405] Fix | Delete
if (_ = accept(result.set)) descriptor.set = _;
[2406] Fix | Delete
if (_ = accept(result.init)) initializers.unshift(_);
[2407] Fix | Delete
}
[2408] Fix | Delete
else if (_ = accept(result)) {
[2409] Fix | Delete
if (kind === "field") initializers.unshift(_);
[2410] Fix | Delete
else descriptor[key] = _;
[2411] Fix | Delete
}
[2412] Fix | Delete
}
[2413] Fix | Delete
if (target) Object.defineProperty(target, contextIn.name, descriptor);
[2414] Fix | Delete
done = true;
[2415] Fix | Delete
};
[2416] Fix | Delete
[2417] Fix | Delete
function __runInitializers(thisArg, initializers, value) {
[2418] Fix | Delete
var useValue = arguments.length > 2;
[2419] Fix | Delete
for (var i = 0; i < initializers.length; i++) {
[2420] Fix | Delete
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
[2421] Fix | Delete
}
[2422] Fix | Delete
return useValue ? value : void 0;
[2423] Fix | Delete
};
[2424] Fix | Delete
[2425] Fix | Delete
function __propKey(x) {
[2426] Fix | Delete
return typeof x === "symbol" ? x : "".concat(x);
[2427] Fix | Delete
};
[2428] Fix | Delete
[2429] Fix | Delete
function __setFunctionName(f, name, prefix) {
[2430] Fix | Delete
if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
[2431] Fix | Delete
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
[2432] Fix | Delete
};
[2433] Fix | Delete
[2434] Fix | Delete
function __metadata(metadataKey, metadataValue) {
[2435] Fix | Delete
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
[2436] Fix | Delete
}
[2437] Fix | Delete
[2438] Fix | Delete
function __awaiter(thisArg, _arguments, P, generator) {
[2439] Fix | Delete
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
[2440] Fix | Delete
return new (P || (P = Promise))(function (resolve, reject) {
[2441] Fix | Delete
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
[2442] Fix | Delete
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
[2443] Fix | Delete
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
[2444] Fix | Delete
step((generator = generator.apply(thisArg, _arguments || [])).next());
[2445] Fix | Delete
});
[2446] Fix | Delete
}
[2447] Fix | Delete
[2448] Fix | Delete
function __generator(thisArg, body) {
[2449] Fix | Delete
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
[2450] Fix | Delete
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
[2451] Fix | Delete
function verb(n) { return function (v) { return step([n, v]); }; }
[2452] Fix | Delete
function step(op) {
[2453] Fix | Delete
if (f) throw new TypeError("Generator is already executing.");
[2454] Fix | Delete
while (g && (g = 0, op[0] && (_ = 0)), _) try {
[2455] Fix | Delete
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
[2456] Fix | Delete
if (y = 0, t) op = [op[0] & 2, t.value];
[2457] Fix | Delete
switch (op[0]) {
[2458] Fix | Delete
case 0: case 1: t = op; break;
[2459] Fix | Delete
case 4: _.label++; return { value: op[1], done: false };
[2460] Fix | Delete
case 5: _.label++; y = op[1]; op = [0]; continue;
[2461] Fix | Delete
case 7: op = _.ops.pop(); _.trys.pop(); continue;
[2462] Fix | Delete
default:
[2463] Fix | Delete
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
[2464] Fix | Delete
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
[2465] Fix | Delete
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
[2466] Fix | Delete
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
[2467] Fix | Delete
if (t[2]) _.ops.pop();
[2468] Fix | Delete
_.trys.pop(); continue;
[2469] Fix | Delete
}
[2470] Fix | Delete
op = body.call(thisArg, _);
[2471] Fix | Delete
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
[2472] Fix | Delete
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
[2473] Fix | Delete
}
[2474] Fix | Delete
}
[2475] Fix | Delete
[2476] Fix | Delete
var __createBinding = Object.create ? (function(o, m, k, k2) {
[2477] Fix | Delete
if (k2 === undefined) k2 = k;
[2478] Fix | Delete
var desc = Object.getOwnPropertyDescriptor(m, k);
[2479] Fix | Delete
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
[2480] Fix | Delete
desc = { enumerable: true, get: function() { return m[k]; } };
[2481] Fix | Delete
}
[2482] Fix | Delete
Object.defineProperty(o, k2, desc);
[2483] Fix | Delete
}) : (function(o, m, k, k2) {
[2484] Fix | Delete
if (k2 === undefined) k2 = k;
[2485] Fix | Delete
o[k2] = m[k];
[2486] Fix | Delete
});
[2487] Fix | Delete
[2488] Fix | Delete
function __exportStar(m, o) {
[2489] Fix | Delete
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
[2490] Fix | Delete
}
[2491] Fix | Delete
[2492] Fix | Delete
function __values(o) {
[2493] Fix | Delete
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
[2494] Fix | Delete
if (m) return m.call(o);
[2495] Fix | Delete
if (o && typeof o.length === "number") return {
[2496] Fix | Delete
next: function () {
[2497] Fix | Delete
if (o && i >= o.length) o = void 0;
[2498] Fix | Delete
return { value: o && o[i++], done: !o };
[2499] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function