Edit File by line
/home/barbar84/www/wp-inclu.../js/dist
File: components.js
theKeys.push(dontEnums[k]);
[56000] Fix | Delete
}
[56001] Fix | Delete
}
[56002] Fix | Delete
}
[56003] Fix | Delete
return theKeys;
[56004] Fix | Delete
};
[56005] Fix | Delete
}
[56006] Fix | Delete
module.exports = keysShim;
[56007] Fix | Delete
[56008] Fix | Delete
[56009] Fix | Delete
/***/ }),
[56010] Fix | Delete
[56011] Fix | Delete
/***/ "sej1":
[56012] Fix | Delete
/***/ (function(module, __webpack_exports__, __webpack_require__) {
[56013] Fix | Delete
[56014] Fix | Delete
"use strict";
[56015] Fix | Delete
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return useCreateElement; });
[56016] Fix | Delete
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("cDcd");
[56017] Fix | Delete
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
[56018] Fix | Delete
/* harmony import */ var _SystemContext_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("r4Od");
[56019] Fix | Delete
/* harmony import */ var _rollupPluginBabelHelpers_0c84a174_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("ixHF");
[56020] Fix | Delete
[56021] Fix | Delete
[56022] Fix | Delete
[56023] Fix | Delete
[56024] Fix | Delete
function isRenderProp(children) {
[56025] Fix | Delete
return typeof children === "function";
[56026] Fix | Delete
}
[56027] Fix | Delete
[56028] Fix | Delete
/**
[56029] Fix | Delete
* Custom hook that will call `children` if it's a function. If
[56030] Fix | Delete
* `useCreateElement` has been passed to the context, it'll be used instead.
[56031] Fix | Delete
*
[56032] Fix | Delete
* @example
[56033] Fix | Delete
* import React from "react";
[56034] Fix | Delete
* import { SystemProvider, useCreateElement } from "reakit-system";
[56035] Fix | Delete
*
[56036] Fix | Delete
* const system = {
[56037] Fix | Delete
* useCreateElement(type, props, children = props.children) {
[56038] Fix | Delete
* // very similar to what `useCreateElement` does already
[56039] Fix | Delete
* if (typeof children === "function") {
[56040] Fix | Delete
* const { children: _, ...rest } = props;
[56041] Fix | Delete
* return children(rest);
[56042] Fix | Delete
* }
[56043] Fix | Delete
* return React.createElement(type, props, children);
[56044] Fix | Delete
* },
[56045] Fix | Delete
* };
[56046] Fix | Delete
*
[56047] Fix | Delete
* function Component(props) {
[56048] Fix | Delete
* return useCreateElement("div", props);
[56049] Fix | Delete
* }
[56050] Fix | Delete
*
[56051] Fix | Delete
* function App() {
[56052] Fix | Delete
* return (
[56053] Fix | Delete
* <SystemProvider unstable_system={system}>
[56054] Fix | Delete
* <Component url="url">{({ url }) => <a href={url}>link</a>}</Component>
[56055] Fix | Delete
* </SystemProvider>
[56056] Fix | Delete
* );
[56057] Fix | Delete
* }
[56058] Fix | Delete
*/
[56059] Fix | Delete
[56060] Fix | Delete
var useCreateElement = function useCreateElement(type, props, children) {
[56061] Fix | Delete
if (children === void 0) {
[56062] Fix | Delete
children = props.children;
[56063] Fix | Delete
}
[56064] Fix | Delete
[56065] Fix | Delete
var context = Object(react__WEBPACK_IMPORTED_MODULE_0__["useContext"])(_SystemContext_js__WEBPACK_IMPORTED_MODULE_1__[/* SystemContext */ "a"]);
[56066] Fix | Delete
[56067] Fix | Delete
if (context.useCreateElement) {
[56068] Fix | Delete
return context.useCreateElement(type, props, children);
[56069] Fix | Delete
}
[56070] Fix | Delete
[56071] Fix | Delete
if (typeof type === "string" && isRenderProp(children)) {
[56072] Fix | Delete
var _ = props.children,
[56073] Fix | Delete
rest = Object(_rollupPluginBabelHelpers_0c84a174_js__WEBPACK_IMPORTED_MODULE_2__[/* a */ "b"])(props, ["children"]);
[56074] Fix | Delete
[56075] Fix | Delete
return children(rest);
[56076] Fix | Delete
}
[56077] Fix | Delete
[56078] Fix | Delete
return /*#__PURE__*/Object(react__WEBPACK_IMPORTED_MODULE_0__["createElement"])(type, props, children);
[56079] Fix | Delete
};
[56080] Fix | Delete
[56081] Fix | Delete
[56082] Fix | Delete
[56083] Fix | Delete
[56084] Fix | Delete
/***/ }),
[56085] Fix | Delete
[56086] Fix | Delete
/***/ "tLB3":
[56087] Fix | Delete
/***/ (function(module, exports, __webpack_require__) {
[56088] Fix | Delete
[56089] Fix | Delete
var isObject = __webpack_require__("GoyQ"),
[56090] Fix | Delete
isSymbol = __webpack_require__("/9aa");
[56091] Fix | Delete
[56092] Fix | Delete
/** Used as references for various `Number` constants. */
[56093] Fix | Delete
var NAN = 0 / 0;
[56094] Fix | Delete
[56095] Fix | Delete
/** Used to match leading and trailing whitespace. */
[56096] Fix | Delete
var reTrim = /^\s+|\s+$/g;
[56097] Fix | Delete
[56098] Fix | Delete
/** Used to detect bad signed hexadecimal string values. */
[56099] Fix | Delete
var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
[56100] Fix | Delete
[56101] Fix | Delete
/** Used to detect binary string values. */
[56102] Fix | Delete
var reIsBinary = /^0b[01]+$/i;
[56103] Fix | Delete
[56104] Fix | Delete
/** Used to detect octal string values. */
[56105] Fix | Delete
var reIsOctal = /^0o[0-7]+$/i;
[56106] Fix | Delete
[56107] Fix | Delete
/** Built-in method references without a dependency on `root`. */
[56108] Fix | Delete
var freeParseInt = parseInt;
[56109] Fix | Delete
[56110] Fix | Delete
/**
[56111] Fix | Delete
* Converts `value` to a number.
[56112] Fix | Delete
*
[56113] Fix | Delete
* @static
[56114] Fix | Delete
* @memberOf _
[56115] Fix | Delete
* @since 4.0.0
[56116] Fix | Delete
* @category Lang
[56117] Fix | Delete
* @param {*} value The value to process.
[56118] Fix | Delete
* @returns {number} Returns the number.
[56119] Fix | Delete
* @example
[56120] Fix | Delete
*
[56121] Fix | Delete
* _.toNumber(3.2);
[56122] Fix | Delete
* // => 3.2
[56123] Fix | Delete
*
[56124] Fix | Delete
* _.toNumber(Number.MIN_VALUE);
[56125] Fix | Delete
* // => 5e-324
[56126] Fix | Delete
*
[56127] Fix | Delete
* _.toNumber(Infinity);
[56128] Fix | Delete
* // => Infinity
[56129] Fix | Delete
*
[56130] Fix | Delete
* _.toNumber('3.2');
[56131] Fix | Delete
* // => 3.2
[56132] Fix | Delete
*/
[56133] Fix | Delete
function toNumber(value) {
[56134] Fix | Delete
if (typeof value == 'number') {
[56135] Fix | Delete
return value;
[56136] Fix | Delete
}
[56137] Fix | Delete
if (isSymbol(value)) {
[56138] Fix | Delete
return NAN;
[56139] Fix | Delete
}
[56140] Fix | Delete
if (isObject(value)) {
[56141] Fix | Delete
var other = typeof value.valueOf == 'function' ? value.valueOf() : value;
[56142] Fix | Delete
value = isObject(other) ? (other + '') : other;
[56143] Fix | Delete
}
[56144] Fix | Delete
if (typeof value != 'string') {
[56145] Fix | Delete
return value === 0 ? value : +value;
[56146] Fix | Delete
}
[56147] Fix | Delete
value = value.replace(reTrim, '');
[56148] Fix | Delete
var isBinary = reIsBinary.test(value);
[56149] Fix | Delete
return (isBinary || reIsOctal.test(value))
[56150] Fix | Delete
? freeParseInt(value.slice(2), isBinary ? 2 : 8)
[56151] Fix | Delete
: (reIsBadHex.test(value) ? NAN : +value);
[56152] Fix | Delete
}
[56153] Fix | Delete
[56154] Fix | Delete
module.exports = toNumber;
[56155] Fix | Delete
[56156] Fix | Delete
[56157] Fix | Delete
/***/ }),
[56158] Fix | Delete
[56159] Fix | Delete
/***/ "u5Fq":
[56160] Fix | Delete
/***/ (function(module, exports, __webpack_require__) {
[56161] Fix | Delete
[56162] Fix | Delete
"use strict";
[56163] Fix | Delete
[56164] Fix | Delete
[56165] Fix | Delete
Object.defineProperty(exports, "__esModule", {
[56166] Fix | Delete
value: true
[56167] Fix | Delete
});
[56168] Fix | Delete
exports['default'] = getVisibleDays;
[56169] Fix | Delete
[56170] Fix | Delete
var _moment = __webpack_require__("wy2R");
[56171] Fix | Delete
[56172] Fix | Delete
var _moment2 = _interopRequireDefault(_moment);
[56173] Fix | Delete
[56174] Fix | Delete
var _toISOMonthString = __webpack_require__("jenk");
[56175] Fix | Delete
[56176] Fix | Delete
var _toISOMonthString2 = _interopRequireDefault(_toISOMonthString);
[56177] Fix | Delete
[56178] Fix | Delete
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
[56179] Fix | Delete
[56180] Fix | Delete
function getVisibleDays(month, numberOfMonths, enableOutsideDays, withoutTransitionMonths) {
[56181] Fix | Delete
if (!_moment2['default'].isMoment(month)) return {};
[56182] Fix | Delete
[56183] Fix | Delete
var visibleDaysByMonth = {};
[56184] Fix | Delete
var currentMonth = withoutTransitionMonths ? month.clone() : month.clone().subtract(1, 'month');
[56185] Fix | Delete
for (var i = 0; i < (withoutTransitionMonths ? numberOfMonths : numberOfMonths + 2); i += 1) {
[56186] Fix | Delete
var visibleDays = [];
[56187] Fix | Delete
[56188] Fix | Delete
// set utc offset to get correct dates in future (when timezone changes)
[56189] Fix | Delete
var baseDate = currentMonth.clone();
[56190] Fix | Delete
var firstOfMonth = baseDate.clone().startOf('month').hour(12);
[56191] Fix | Delete
var lastOfMonth = baseDate.clone().endOf('month').hour(12);
[56192] Fix | Delete
[56193] Fix | Delete
var currentDay = firstOfMonth.clone();
[56194] Fix | Delete
[56195] Fix | Delete
// days belonging to the previous month
[56196] Fix | Delete
if (enableOutsideDays) {
[56197] Fix | Delete
for (var j = 0; j < currentDay.weekday(); j += 1) {
[56198] Fix | Delete
var prevDay = currentDay.clone().subtract(j + 1, 'day');
[56199] Fix | Delete
visibleDays.unshift(prevDay);
[56200] Fix | Delete
}
[56201] Fix | Delete
}
[56202] Fix | Delete
[56203] Fix | Delete
while (currentDay < lastOfMonth) {
[56204] Fix | Delete
visibleDays.push(currentDay.clone());
[56205] Fix | Delete
currentDay.add(1, 'day');
[56206] Fix | Delete
}
[56207] Fix | Delete
[56208] Fix | Delete
if (enableOutsideDays) {
[56209] Fix | Delete
// weekday() returns the index of the day of the week according to the locale
[56210] Fix | Delete
// this means if the week starts on Monday, weekday() will return 0 for a Monday date, not 1
[56211] Fix | Delete
if (currentDay.weekday() !== 0) {
[56212] Fix | Delete
// days belonging to the next month
[56213] Fix | Delete
for (var k = currentDay.weekday(), count = 0; k < 7; k += 1, count += 1) {
[56214] Fix | Delete
var nextDay = currentDay.clone().add(count, 'day');
[56215] Fix | Delete
visibleDays.push(nextDay);
[56216] Fix | Delete
}
[56217] Fix | Delete
}
[56218] Fix | Delete
}
[56219] Fix | Delete
[56220] Fix | Delete
visibleDaysByMonth[(0, _toISOMonthString2['default'])(currentMonth)] = visibleDays;
[56221] Fix | Delete
currentMonth = currentMonth.clone().add(1, 'month');
[56222] Fix | Delete
}
[56223] Fix | Delete
[56224] Fix | Delete
return visibleDaysByMonth;
[56225] Fix | Delete
}
[56226] Fix | Delete
[56227] Fix | Delete
/***/ }),
[56228] Fix | Delete
[56229] Fix | Delete
/***/ "uGfJ":
[56230] Fix | Delete
/***/ (function(module, __webpack_exports__, __webpack_require__) {
[56231] Fix | Delete
[56232] Fix | Delete
"use strict";
[56233] Fix | Delete
/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("GRId");
[56234] Fix | Delete
/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__);
[56235] Fix | Delete
/* harmony import */ var _wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("Tqx9");
[56236] Fix | Delete
/* harmony import */ var _wordpress_primitives__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__);
[56237] Fix | Delete
[56238] Fix | Delete
[56239] Fix | Delete
/**
[56240] Fix | Delete
* WordPress dependencies
[56241] Fix | Delete
*/
[56242] Fix | Delete
[56243] Fix | Delete
var textColor = Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(_wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__["SVG"], {
[56244] Fix | Delete
xmlns: "http://www.w3.org/2000/svg",
[56245] Fix | Delete
viewBox: "-2 -2 24 24"
[56246] Fix | Delete
}, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(_wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__["Path"], {
[56247] Fix | Delete
d: "M13.23 15h1.9L11 4H9L5 15h1.88l1.07-3h4.18zm-1.53-4.54H8.51L10 5.6z"
[56248] Fix | Delete
}));
[56249] Fix | Delete
/* harmony default export */ __webpack_exports__["a"] = (textColor);
[56250] Fix | Delete
[56251] Fix | Delete
[56252] Fix | Delete
/***/ }),
[56253] Fix | Delete
[56254] Fix | Delete
/***/ "ulUS":
[56255] Fix | Delete
/***/ (function(module, exports, __webpack_require__) {
[56256] Fix | Delete
[56257] Fix | Delete
"use strict";
[56258] Fix | Delete
[56259] Fix | Delete
[56260] Fix | Delete
Object.defineProperty(exports, "__esModule", {
[56261] Fix | Delete
value: true
[56262] Fix | Delete
});
[56263] Fix | Delete
exports['default'] = isSameMonth;
[56264] Fix | Delete
[56265] Fix | Delete
var _moment = __webpack_require__("wy2R");
[56266] Fix | Delete
[56267] Fix | Delete
var _moment2 = _interopRequireDefault(_moment);
[56268] Fix | Delete
[56269] Fix | Delete
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
[56270] Fix | Delete
[56271] Fix | Delete
function isSameMonth(a, b) {
[56272] Fix | Delete
if (!_moment2['default'].isMoment(a) || !_moment2['default'].isMoment(b)) return false;
[56273] Fix | Delete
// Compare least significant, most likely to change units first
[56274] Fix | Delete
// Moment's isSame clones moment inputs and is a tad slow
[56275] Fix | Delete
return a.month() === b.month() && a.year() === b.year();
[56276] Fix | Delete
}
[56277] Fix | Delete
[56278] Fix | Delete
/***/ }),
[56279] Fix | Delete
[56280] Fix | Delete
/***/ "v3P4":
[56281] Fix | Delete
/***/ (function(module, exports, __webpack_require__) {
[56282] Fix | Delete
[56283] Fix | Delete
"use strict";
[56284] Fix | Delete
[56285] Fix | Delete
[56286] Fix | Delete
var define = __webpack_require__("82c2");
[56287] Fix | Delete
var getPolyfill = __webpack_require__("22yB");
[56288] Fix | Delete
[56289] Fix | Delete
module.exports = function shimFlat() {
[56290] Fix | Delete
var polyfill = getPolyfill();
[56291] Fix | Delete
define(
[56292] Fix | Delete
Array.prototype,
[56293] Fix | Delete
{ flat: polyfill },
[56294] Fix | Delete
{ flat: function () { return Array.prototype.flat !== polyfill; } }
[56295] Fix | Delete
);
[56296] Fix | Delete
return polyfill;
[56297] Fix | Delete
};
[56298] Fix | Delete
[56299] Fix | Delete
[56300] Fix | Delete
/***/ }),
[56301] Fix | Delete
[56302] Fix | Delete
/***/ "v7lB":
[56303] Fix | Delete
/***/ (function(module, exports, __webpack_require__) {
[56304] Fix | Delete
[56305] Fix | Delete
"use strict";
[56306] Fix | Delete
[56307] Fix | Delete
[56308] Fix | Delete
/* globals
[56309] Fix | Delete
AggregateError,
[56310] Fix | Delete
Atomics,
[56311] Fix | Delete
FinalizationRegistry,
[56312] Fix | Delete
SharedArrayBuffer,
[56313] Fix | Delete
WeakRef,
[56314] Fix | Delete
*/
[56315] Fix | Delete
[56316] Fix | Delete
var undefined;
[56317] Fix | Delete
[56318] Fix | Delete
var $SyntaxError = SyntaxError;
[56319] Fix | Delete
var $Function = Function;
[56320] Fix | Delete
var $TypeError = TypeError;
[56321] Fix | Delete
[56322] Fix | Delete
// eslint-disable-next-line consistent-return
[56323] Fix | Delete
var getEvalledConstructor = function (expressionSyntax) {
[56324] Fix | Delete
try {
[56325] Fix | Delete
// eslint-disable-next-line no-new-func
[56326] Fix | Delete
return Function('"use strict"; return (' + expressionSyntax + ').constructor;')();
[56327] Fix | Delete
} catch (e) {}
[56328] Fix | Delete
};
[56329] Fix | Delete
[56330] Fix | Delete
var $gOPD = Object.getOwnPropertyDescriptor;
[56331] Fix | Delete
if ($gOPD) {
[56332] Fix | Delete
try {
[56333] Fix | Delete
$gOPD({}, '');
[56334] Fix | Delete
} catch (e) {
[56335] Fix | Delete
$gOPD = null; // this is IE 8, which has a broken gOPD
[56336] Fix | Delete
}
[56337] Fix | Delete
}
[56338] Fix | Delete
[56339] Fix | Delete
var throwTypeError = function () { throw new $TypeError(); };
[56340] Fix | Delete
var ThrowTypeError = $gOPD
[56341] Fix | Delete
? (function () {
[56342] Fix | Delete
try {
[56343] Fix | Delete
// eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties
[56344] Fix | Delete
arguments.callee; // IE 8 does not throw here
[56345] Fix | Delete
return throwTypeError;
[56346] Fix | Delete
} catch (calleeThrows) {
[56347] Fix | Delete
try {
[56348] Fix | Delete
// IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')
[56349] Fix | Delete
return $gOPD(arguments, 'callee').get;
[56350] Fix | Delete
} catch (gOPDthrows) {
[56351] Fix | Delete
return throwTypeError;
[56352] Fix | Delete
}
[56353] Fix | Delete
}
[56354] Fix | Delete
}())
[56355] Fix | Delete
: throwTypeError;
[56356] Fix | Delete
[56357] Fix | Delete
var hasSymbols = __webpack_require__("UVaH")();
[56358] Fix | Delete
[56359] Fix | Delete
var getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto
[56360] Fix | Delete
[56361] Fix | Delete
var asyncGenFunction = getEvalledConstructor('async function* () {}');
[56362] Fix | Delete
var asyncGenFunctionPrototype = asyncGenFunction ? asyncGenFunction.prototype : undefined;
[56363] Fix | Delete
var asyncGenPrototype = asyncGenFunctionPrototype ? asyncGenFunctionPrototype.prototype : undefined;
[56364] Fix | Delete
[56365] Fix | Delete
var TypedArray = typeof Uint8Array === 'undefined' ? undefined : getProto(Uint8Array);
[56366] Fix | Delete
[56367] Fix | Delete
var INTRINSICS = {
[56368] Fix | Delete
'%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError,
[56369] Fix | Delete
'%Array%': Array,
[56370] Fix | Delete
'%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,
[56371] Fix | Delete
'%ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined,
[56372] Fix | Delete
'%AsyncFromSyncIteratorPrototype%': undefined,
[56373] Fix | Delete
'%AsyncFunction%': getEvalledConstructor('async function () {}'),
[56374] Fix | Delete
'%AsyncGenerator%': asyncGenFunctionPrototype,
[56375] Fix | Delete
'%AsyncGeneratorFunction%': asyncGenFunction,
[56376] Fix | Delete
'%AsyncIteratorPrototype%': asyncGenPrototype ? getProto(asyncGenPrototype) : undefined,
[56377] Fix | Delete
'%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,
[56378] Fix | Delete
'%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,
[56379] Fix | Delete
'%Boolean%': Boolean,
[56380] Fix | Delete
'%DataView%': typeof DataView === 'undefined' ? undefined : DataView,
[56381] Fix | Delete
'%Date%': Date,
[56382] Fix | Delete
'%decodeURI%': decodeURI,
[56383] Fix | Delete
'%decodeURIComponent%': decodeURIComponent,
[56384] Fix | Delete
'%encodeURI%': encodeURI,
[56385] Fix | Delete
'%encodeURIComponent%': encodeURIComponent,
[56386] Fix | Delete
'%Error%': Error,
[56387] Fix | Delete
'%eval%': eval, // eslint-disable-line no-eval
[56388] Fix | Delete
'%EvalError%': EvalError,
[56389] Fix | Delete
'%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,
[56390] Fix | Delete
'%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,
[56391] Fix | Delete
'%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry,
[56392] Fix | Delete
'%Function%': $Function,
[56393] Fix | Delete
'%GeneratorFunction%': getEvalledConstructor('function* () {}'),
[56394] Fix | Delete
'%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,
[56395] Fix | Delete
'%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,
[56396] Fix | Delete
'%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,
[56397] Fix | Delete
'%isFinite%': isFinite,
[56398] Fix | Delete
'%isNaN%': isNaN,
[56399] Fix | Delete
'%IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined,
[56400] Fix | Delete
'%JSON%': typeof JSON === 'object' ? JSON : undefined,
[56401] Fix | Delete
'%Map%': typeof Map === 'undefined' ? undefined : Map,
[56402] Fix | Delete
'%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined : getProto(new Map()[Symbol.iterator]()),
[56403] Fix | Delete
'%Math%': Math,
[56404] Fix | Delete
'%Number%': Number,
[56405] Fix | Delete
'%Object%': Object,
[56406] Fix | Delete
'%parseFloat%': parseFloat,
[56407] Fix | Delete
'%parseInt%': parseInt,
[56408] Fix | Delete
'%Promise%': typeof Promise === 'undefined' ? undefined : Promise,
[56409] Fix | Delete
'%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,
[56410] Fix | Delete
'%RangeError%': RangeError,
[56411] Fix | Delete
'%ReferenceError%': ReferenceError,
[56412] Fix | Delete
'%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,
[56413] Fix | Delete
'%RegExp%': RegExp,
[56414] Fix | Delete
'%Set%': typeof Set === 'undefined' ? undefined : Set,
[56415] Fix | Delete
'%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined : getProto(new Set()[Symbol.iterator]()),
[56416] Fix | Delete
'%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,
[56417] Fix | Delete
'%String%': String,
[56418] Fix | Delete
'%StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined,
[56419] Fix | Delete
'%Symbol%': hasSymbols ? Symbol : undefined,
[56420] Fix | Delete
'%SyntaxError%': $SyntaxError,
[56421] Fix | Delete
'%ThrowTypeError%': ThrowTypeError,
[56422] Fix | Delete
'%TypedArray%': TypedArray,
[56423] Fix | Delete
'%TypeError%': $TypeError,
[56424] Fix | Delete
'%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,
[56425] Fix | Delete
'%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,
[56426] Fix | Delete
'%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,
[56427] Fix | Delete
'%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,
[56428] Fix | Delete
'%URIError%': URIError,
[56429] Fix | Delete
'%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,
[56430] Fix | Delete
'%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef,
[56431] Fix | Delete
'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet
[56432] Fix | Delete
};
[56433] Fix | Delete
[56434] Fix | Delete
var LEGACY_ALIASES = {
[56435] Fix | Delete
'%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'],
[56436] Fix | Delete
'%ArrayPrototype%': ['Array', 'prototype'],
[56437] Fix | Delete
'%ArrayProto_entries%': ['Array', 'prototype', 'entries'],
[56438] Fix | Delete
'%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'],
[56439] Fix | Delete
'%ArrayProto_keys%': ['Array', 'prototype', 'keys'],
[56440] Fix | Delete
'%ArrayProto_values%': ['Array', 'prototype', 'values'],
[56441] Fix | Delete
'%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'],
[56442] Fix | Delete
'%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'],
[56443] Fix | Delete
'%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'],
[56444] Fix | Delete
'%BooleanPrototype%': ['Boolean', 'prototype'],
[56445] Fix | Delete
'%DataViewPrototype%': ['DataView', 'prototype'],
[56446] Fix | Delete
'%DatePrototype%': ['Date', 'prototype'],
[56447] Fix | Delete
'%ErrorPrototype%': ['Error', 'prototype'],
[56448] Fix | Delete
'%EvalErrorPrototype%': ['EvalError', 'prototype'],
[56449] Fix | Delete
'%Float32ArrayPrototype%': ['Float32Array', 'prototype'],
[56450] Fix | Delete
'%Float64ArrayPrototype%': ['Float64Array', 'prototype'],
[56451] Fix | Delete
'%FunctionPrototype%': ['Function', 'prototype'],
[56452] Fix | Delete
'%Generator%': ['GeneratorFunction', 'prototype'],
[56453] Fix | Delete
'%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'],
[56454] Fix | Delete
'%Int8ArrayPrototype%': ['Int8Array', 'prototype'],
[56455] Fix | Delete
'%Int16ArrayPrototype%': ['Int16Array', 'prototype'],
[56456] Fix | Delete
'%Int32ArrayPrototype%': ['Int32Array', 'prototype'],
[56457] Fix | Delete
'%JSONParse%': ['JSON', 'parse'],
[56458] Fix | Delete
'%JSONStringify%': ['JSON', 'stringify'],
[56459] Fix | Delete
'%MapPrototype%': ['Map', 'prototype'],
[56460] Fix | Delete
'%NumberPrototype%': ['Number', 'prototype'],
[56461] Fix | Delete
'%ObjectPrototype%': ['Object', 'prototype'],
[56462] Fix | Delete
'%ObjProto_toString%': ['Object', 'prototype', 'toString'],
[56463] Fix | Delete
'%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'],
[56464] Fix | Delete
'%PromisePrototype%': ['Promise', 'prototype'],
[56465] Fix | Delete
'%PromiseProto_then%': ['Promise', 'prototype', 'then'],
[56466] Fix | Delete
'%Promise_all%': ['Promise', 'all'],
[56467] Fix | Delete
'%Promise_reject%': ['Promise', 'reject'],
[56468] Fix | Delete
'%Promise_resolve%': ['Promise', 'resolve'],
[56469] Fix | Delete
'%RangeErrorPrototype%': ['RangeError', 'prototype'],
[56470] Fix | Delete
'%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'],
[56471] Fix | Delete
'%RegExpPrototype%': ['RegExp', 'prototype'],
[56472] Fix | Delete
'%SetPrototype%': ['Set', 'prototype'],
[56473] Fix | Delete
'%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'],
[56474] Fix | Delete
'%StringPrototype%': ['String', 'prototype'],
[56475] Fix | Delete
'%SymbolPrototype%': ['Symbol', 'prototype'],
[56476] Fix | Delete
'%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'],
[56477] Fix | Delete
'%TypedArrayPrototype%': ['TypedArray', 'prototype'],
[56478] Fix | Delete
'%TypeErrorPrototype%': ['TypeError', 'prototype'],
[56479] Fix | Delete
'%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'],
[56480] Fix | Delete
'%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'],
[56481] Fix | Delete
'%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'],
[56482] Fix | Delete
'%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'],
[56483] Fix | Delete
'%URIErrorPrototype%': ['URIError', 'prototype'],
[56484] Fix | Delete
'%WeakMapPrototype%': ['WeakMap', 'prototype'],
[56485] Fix | Delete
'%WeakSetPrototype%': ['WeakSet', 'prototype']
[56486] Fix | Delete
};
[56487] Fix | Delete
[56488] Fix | Delete
var bind = __webpack_require__("D3zA");
[56489] Fix | Delete
var hasOwn = __webpack_require__("oNNP");
[56490] Fix | Delete
var $concat = bind.call(Function.call, Array.prototype.concat);
[56491] Fix | Delete
var $spliceApply = bind.call(Function.apply, Array.prototype.splice);
[56492] Fix | Delete
var $replace = bind.call(Function.call, String.prototype.replace);
[56493] Fix | Delete
[56494] Fix | Delete
/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */
[56495] Fix | Delete
var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
[56496] Fix | Delete
var reEscapeChar = /\\(\\)?/g; /** Used to match backslashes in property paths. */
[56497] Fix | Delete
var stringToPath = function stringToPath(string) {
[56498] Fix | Delete
var result = [];
[56499] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function