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: components.js
[500] Fix | Delete
function matchColorStop() {
[501] Fix | Delete
var color = matchColor();
[502] Fix | Delete
[503] Fix | Delete
if (!color) {
[504] Fix | Delete
error('Expected color definition');
[505] Fix | Delete
}
[506] Fix | Delete
[507] Fix | Delete
color.length = matchDistance();
[508] Fix | Delete
return color;
[509] Fix | Delete
}
[510] Fix | Delete
[511] Fix | Delete
function matchColor() {
[512] Fix | Delete
return matchHexColor() ||
[513] Fix | Delete
matchRGBAColor() ||
[514] Fix | Delete
matchRGBColor() ||
[515] Fix | Delete
matchLiteralColor();
[516] Fix | Delete
}
[517] Fix | Delete
[518] Fix | Delete
function matchLiteralColor() {
[519] Fix | Delete
return match('literal', tokens.literalColor, 0);
[520] Fix | Delete
}
[521] Fix | Delete
[522] Fix | Delete
function matchHexColor() {
[523] Fix | Delete
return match('hex', tokens.hexColor, 1);
[524] Fix | Delete
}
[525] Fix | Delete
[526] Fix | Delete
function matchRGBColor() {
[527] Fix | Delete
return matchCall(tokens.rgbColor, function() {
[528] Fix | Delete
return {
[529] Fix | Delete
type: 'rgb',
[530] Fix | Delete
value: matchListing(matchNumber)
[531] Fix | Delete
};
[532] Fix | Delete
});
[533] Fix | Delete
}
[534] Fix | Delete
[535] Fix | Delete
function matchRGBAColor() {
[536] Fix | Delete
return matchCall(tokens.rgbaColor, function() {
[537] Fix | Delete
return {
[538] Fix | Delete
type: 'rgba',
[539] Fix | Delete
value: matchListing(matchNumber)
[540] Fix | Delete
};
[541] Fix | Delete
});
[542] Fix | Delete
}
[543] Fix | Delete
[544] Fix | Delete
function matchNumber() {
[545] Fix | Delete
return scan(tokens.number)[1];
[546] Fix | Delete
}
[547] Fix | Delete
[548] Fix | Delete
function matchDistance() {
[549] Fix | Delete
return match('%', tokens.percentageValue, 1) ||
[550] Fix | Delete
matchPositionKeyword() ||
[551] Fix | Delete
matchLength();
[552] Fix | Delete
}
[553] Fix | Delete
[554] Fix | Delete
function matchPositionKeyword() {
[555] Fix | Delete
return match('position-keyword', tokens.positionKeywords, 1);
[556] Fix | Delete
}
[557] Fix | Delete
[558] Fix | Delete
function matchLength() {
[559] Fix | Delete
return match('px', tokens.pixelValue, 1) ||
[560] Fix | Delete
match('em', tokens.emValue, 1);
[561] Fix | Delete
}
[562] Fix | Delete
[563] Fix | Delete
function match(type, pattern, captureIndex) {
[564] Fix | Delete
var captures = scan(pattern);
[565] Fix | Delete
if (captures) {
[566] Fix | Delete
return {
[567] Fix | Delete
type: type,
[568] Fix | Delete
value: captures[captureIndex]
[569] Fix | Delete
};
[570] Fix | Delete
}
[571] Fix | Delete
}
[572] Fix | Delete
[573] Fix | Delete
function scan(regexp) {
[574] Fix | Delete
var captures,
[575] Fix | Delete
blankCaptures;
[576] Fix | Delete
[577] Fix | Delete
blankCaptures = /^[\n\r\t\s]+/.exec(input);
[578] Fix | Delete
if (blankCaptures) {
[579] Fix | Delete
consume(blankCaptures[0].length);
[580] Fix | Delete
}
[581] Fix | Delete
[582] Fix | Delete
captures = regexp.exec(input);
[583] Fix | Delete
if (captures) {
[584] Fix | Delete
consume(captures[0].length);
[585] Fix | Delete
}
[586] Fix | Delete
[587] Fix | Delete
return captures;
[588] Fix | Delete
}
[589] Fix | Delete
[590] Fix | Delete
function consume(size) {
[591] Fix | Delete
input = input.substr(size);
[592] Fix | Delete
}
[593] Fix | Delete
[594] Fix | Delete
return function(code) {
[595] Fix | Delete
input = code.toString();
[596] Fix | Delete
return getAST();
[597] Fix | Delete
};
[598] Fix | Delete
})();
[599] Fix | Delete
[600] Fix | Delete
exports.parse = (GradientParser || {}).parse;
[601] Fix | Delete
[602] Fix | Delete
[603] Fix | Delete
/***/ }),
[604] Fix | Delete
[605] Fix | Delete
/***/ 9664:
[606] Fix | Delete
/***/ ((module) => {
[607] Fix | Delete
[608] Fix | Delete
module.exports =
[609] Fix | Delete
/******/ (function(modules) { // webpackBootstrap
[610] Fix | Delete
/******/ // The module cache
[611] Fix | Delete
/******/ var installedModules = {};
[612] Fix | Delete
/******/
[613] Fix | Delete
/******/ // The require function
[614] Fix | Delete
/******/ function __nested_webpack_require_187__(moduleId) {
[615] Fix | Delete
/******/
[616] Fix | Delete
/******/ // Check if module is in cache
[617] Fix | Delete
/******/ if(installedModules[moduleId])
[618] Fix | Delete
/******/ return installedModules[moduleId].exports;
[619] Fix | Delete
/******/
[620] Fix | Delete
/******/ // Create a new module (and put it into the cache)
[621] Fix | Delete
/******/ var module = installedModules[moduleId] = {
[622] Fix | Delete
/******/ exports: {},
[623] Fix | Delete
/******/ id: moduleId,
[624] Fix | Delete
/******/ loaded: false
[625] Fix | Delete
/******/ };
[626] Fix | Delete
/******/
[627] Fix | Delete
/******/ // Execute the module function
[628] Fix | Delete
/******/ modules[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_187__);
[629] Fix | Delete
/******/
[630] Fix | Delete
/******/ // Flag the module as loaded
[631] Fix | Delete
/******/ module.loaded = true;
[632] Fix | Delete
/******/
[633] Fix | Delete
/******/ // Return the exports of the module
[634] Fix | Delete
/******/ return module.exports;
[635] Fix | Delete
/******/ }
[636] Fix | Delete
/******/
[637] Fix | Delete
/******/
[638] Fix | Delete
/******/ // expose the modules object (__webpack_modules__)
[639] Fix | Delete
/******/ __nested_webpack_require_187__.m = modules;
[640] Fix | Delete
/******/
[641] Fix | Delete
/******/ // expose the module cache
[642] Fix | Delete
/******/ __nested_webpack_require_187__.c = installedModules;
[643] Fix | Delete
/******/
[644] Fix | Delete
/******/ // __webpack_public_path__
[645] Fix | Delete
/******/ __nested_webpack_require_187__.p = "";
[646] Fix | Delete
/******/
[647] Fix | Delete
/******/ // Load entry module and return exports
[648] Fix | Delete
/******/ return __nested_webpack_require_187__(0);
[649] Fix | Delete
/******/ })
[650] Fix | Delete
/************************************************************************/
[651] Fix | Delete
/******/ ([
[652] Fix | Delete
/* 0 */
[653] Fix | Delete
/***/ (function(module, exports, __nested_webpack_require_1468__) {
[654] Fix | Delete
[655] Fix | Delete
module.exports = __nested_webpack_require_1468__(1);
[656] Fix | Delete
[657] Fix | Delete
[658] Fix | Delete
/***/ }),
[659] Fix | Delete
/* 1 */
[660] Fix | Delete
/***/ (function(module, exports, __nested_webpack_require_1587__) {
[661] Fix | Delete
[662] Fix | Delete
'use strict';
[663] Fix | Delete
[664] Fix | Delete
Object.defineProperty(exports, "__esModule", {
[665] Fix | Delete
value: true
[666] Fix | Delete
});
[667] Fix | Delete
[668] Fix | Delete
var _utils = __nested_webpack_require_1587__(2);
[669] Fix | Delete
[670] Fix | Delete
Object.defineProperty(exports, 'combineChunks', {
[671] Fix | Delete
enumerable: true,
[672] Fix | Delete
get: function get() {
[673] Fix | Delete
return _utils.combineChunks;
[674] Fix | Delete
}
[675] Fix | Delete
});
[676] Fix | Delete
Object.defineProperty(exports, 'fillInChunks', {
[677] Fix | Delete
enumerable: true,
[678] Fix | Delete
get: function get() {
[679] Fix | Delete
return _utils.fillInChunks;
[680] Fix | Delete
}
[681] Fix | Delete
});
[682] Fix | Delete
Object.defineProperty(exports, 'findAll', {
[683] Fix | Delete
enumerable: true,
[684] Fix | Delete
get: function get() {
[685] Fix | Delete
return _utils.findAll;
[686] Fix | Delete
}
[687] Fix | Delete
});
[688] Fix | Delete
Object.defineProperty(exports, 'findChunks', {
[689] Fix | Delete
enumerable: true,
[690] Fix | Delete
get: function get() {
[691] Fix | Delete
return _utils.findChunks;
[692] Fix | Delete
}
[693] Fix | Delete
});
[694] Fix | Delete
[695] Fix | Delete
/***/ }),
[696] Fix | Delete
/* 2 */
[697] Fix | Delete
/***/ (function(module, exports) {
[698] Fix | Delete
[699] Fix | Delete
'use strict';
[700] Fix | Delete
[701] Fix | Delete
Object.defineProperty(exports, "__esModule", {
[702] Fix | Delete
value: true
[703] Fix | Delete
});
[704] Fix | Delete
[705] Fix | Delete
[706] Fix | Delete
/**
[707] Fix | Delete
* Creates an array of chunk objects representing both higlightable and non highlightable pieces of text that match each search word.
[708] Fix | Delete
* @return Array of "chunks" (where a Chunk is { start:number, end:number, highlight:boolean })
[709] Fix | Delete
*/
[710] Fix | Delete
var findAll = exports.findAll = function findAll(_ref) {
[711] Fix | Delete
var autoEscape = _ref.autoEscape,
[712] Fix | Delete
_ref$caseSensitive = _ref.caseSensitive,
[713] Fix | Delete
caseSensitive = _ref$caseSensitive === undefined ? false : _ref$caseSensitive,
[714] Fix | Delete
_ref$findChunks = _ref.findChunks,
[715] Fix | Delete
findChunks = _ref$findChunks === undefined ? defaultFindChunks : _ref$findChunks,
[716] Fix | Delete
sanitize = _ref.sanitize,
[717] Fix | Delete
searchWords = _ref.searchWords,
[718] Fix | Delete
textToHighlight = _ref.textToHighlight;
[719] Fix | Delete
return fillInChunks({
[720] Fix | Delete
chunksToHighlight: combineChunks({
[721] Fix | Delete
chunks: findChunks({
[722] Fix | Delete
autoEscape: autoEscape,
[723] Fix | Delete
caseSensitive: caseSensitive,
[724] Fix | Delete
sanitize: sanitize,
[725] Fix | Delete
searchWords: searchWords,
[726] Fix | Delete
textToHighlight: textToHighlight
[727] Fix | Delete
})
[728] Fix | Delete
}),
[729] Fix | Delete
totalLength: textToHighlight ? textToHighlight.length : 0
[730] Fix | Delete
});
[731] Fix | Delete
};
[732] Fix | Delete
[733] Fix | Delete
/**
[734] Fix | Delete
* Takes an array of {start:number, end:number} objects and combines chunks that overlap into single chunks.
[735] Fix | Delete
* @return {start:number, end:number}[]
[736] Fix | Delete
*/
[737] Fix | Delete
[738] Fix | Delete
[739] Fix | Delete
var combineChunks = exports.combineChunks = function combineChunks(_ref2) {
[740] Fix | Delete
var chunks = _ref2.chunks;
[741] Fix | Delete
[742] Fix | Delete
chunks = chunks.sort(function (first, second) {
[743] Fix | Delete
return first.start - second.start;
[744] Fix | Delete
}).reduce(function (processedChunks, nextChunk) {
[745] Fix | Delete
// First chunk just goes straight in the array...
[746] Fix | Delete
if (processedChunks.length === 0) {
[747] Fix | Delete
return [nextChunk];
[748] Fix | Delete
} else {
[749] Fix | Delete
// ... subsequent chunks get checked to see if they overlap...
[750] Fix | Delete
var prevChunk = processedChunks.pop();
[751] Fix | Delete
if (nextChunk.start <= prevChunk.end) {
[752] Fix | Delete
// It may be the case that prevChunk completely surrounds nextChunk, so take the
[753] Fix | Delete
// largest of the end indeces.
[754] Fix | Delete
var endIndex = Math.max(prevChunk.end, nextChunk.end);
[755] Fix | Delete
processedChunks.push({ highlight: false, start: prevChunk.start, end: endIndex });
[756] Fix | Delete
} else {
[757] Fix | Delete
processedChunks.push(prevChunk, nextChunk);
[758] Fix | Delete
}
[759] Fix | Delete
return processedChunks;
[760] Fix | Delete
}
[761] Fix | Delete
}, []);
[762] Fix | Delete
[763] Fix | Delete
return chunks;
[764] Fix | Delete
};
[765] Fix | Delete
[766] Fix | Delete
/**
[767] Fix | Delete
* Examine text for any matches.
[768] Fix | Delete
* If we find matches, add them to the returned array as a "chunk" object ({start:number, end:number}).
[769] Fix | Delete
* @return {start:number, end:number}[]
[770] Fix | Delete
*/
[771] Fix | Delete
var defaultFindChunks = function defaultFindChunks(_ref3) {
[772] Fix | Delete
var autoEscape = _ref3.autoEscape,
[773] Fix | Delete
caseSensitive = _ref3.caseSensitive,
[774] Fix | Delete
_ref3$sanitize = _ref3.sanitize,
[775] Fix | Delete
sanitize = _ref3$sanitize === undefined ? defaultSanitize : _ref3$sanitize,
[776] Fix | Delete
searchWords = _ref3.searchWords,
[777] Fix | Delete
textToHighlight = _ref3.textToHighlight;
[778] Fix | Delete
[779] Fix | Delete
textToHighlight = sanitize(textToHighlight);
[780] Fix | Delete
[781] Fix | Delete
return searchWords.filter(function (searchWord) {
[782] Fix | Delete
return searchWord;
[783] Fix | Delete
}) // Remove empty words
[784] Fix | Delete
.reduce(function (chunks, searchWord) {
[785] Fix | Delete
searchWord = sanitize(searchWord);
[786] Fix | Delete
[787] Fix | Delete
if (autoEscape) {
[788] Fix | Delete
searchWord = escapeRegExpFn(searchWord);
[789] Fix | Delete
}
[790] Fix | Delete
[791] Fix | Delete
var regex = new RegExp(searchWord, caseSensitive ? 'g' : 'gi');
[792] Fix | Delete
[793] Fix | Delete
var match = void 0;
[794] Fix | Delete
while (match = regex.exec(textToHighlight)) {
[795] Fix | Delete
var _start = match.index;
[796] Fix | Delete
var _end = regex.lastIndex;
[797] Fix | Delete
// We do not return zero-length matches
[798] Fix | Delete
if (_end > _start) {
[799] Fix | Delete
chunks.push({ highlight: false, start: _start, end: _end });
[800] Fix | Delete
}
[801] Fix | Delete
[802] Fix | Delete
// Prevent browsers like Firefox from getting stuck in an infinite loop
[803] Fix | Delete
// See http://www.regexguru.com/2008/04/watch-out-for-zero-length-matches/
[804] Fix | Delete
if (match.index === regex.lastIndex) {
[805] Fix | Delete
regex.lastIndex++;
[806] Fix | Delete
}
[807] Fix | Delete
}
[808] Fix | Delete
[809] Fix | Delete
return chunks;
[810] Fix | Delete
}, []);
[811] Fix | Delete
};
[812] Fix | Delete
// Allow the findChunks to be overridden in findAll,
[813] Fix | Delete
// but for backwards compatibility we export as the old name
[814] Fix | Delete
exports.findChunks = defaultFindChunks;
[815] Fix | Delete
[816] Fix | Delete
/**
[817] Fix | Delete
* Given a set of chunks to highlight, create an additional set of chunks
[818] Fix | Delete
* to represent the bits of text between the highlighted text.
[819] Fix | Delete
* @param chunksToHighlight {start:number, end:number}[]
[820] Fix | Delete
* @param totalLength number
[821] Fix | Delete
* @return {start:number, end:number, highlight:boolean}[]
[822] Fix | Delete
*/
[823] Fix | Delete
[824] Fix | Delete
var fillInChunks = exports.fillInChunks = function fillInChunks(_ref4) {
[825] Fix | Delete
var chunksToHighlight = _ref4.chunksToHighlight,
[826] Fix | Delete
totalLength = _ref4.totalLength;
[827] Fix | Delete
[828] Fix | Delete
var allChunks = [];
[829] Fix | Delete
var append = function append(start, end, highlight) {
[830] Fix | Delete
if (end - start > 0) {
[831] Fix | Delete
allChunks.push({
[832] Fix | Delete
start: start,
[833] Fix | Delete
end: end,
[834] Fix | Delete
highlight: highlight
[835] Fix | Delete
});
[836] Fix | Delete
}
[837] Fix | Delete
};
[838] Fix | Delete
[839] Fix | Delete
if (chunksToHighlight.length === 0) {
[840] Fix | Delete
append(0, totalLength, false);
[841] Fix | Delete
} else {
[842] Fix | Delete
var lastIndex = 0;
[843] Fix | Delete
chunksToHighlight.forEach(function (chunk) {
[844] Fix | Delete
append(lastIndex, chunk.start, false);
[845] Fix | Delete
append(chunk.start, chunk.end, true);
[846] Fix | Delete
lastIndex = chunk.end;
[847] Fix | Delete
});
[848] Fix | Delete
append(lastIndex, totalLength, false);
[849] Fix | Delete
}
[850] Fix | Delete
return allChunks;
[851] Fix | Delete
};
[852] Fix | Delete
[853] Fix | Delete
function defaultSanitize(string) {
[854] Fix | Delete
return string;
[855] Fix | Delete
}
[856] Fix | Delete
[857] Fix | Delete
function escapeRegExpFn(string) {
[858] Fix | Delete
return string.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, '\\$&');
[859] Fix | Delete
}
[860] Fix | Delete
[861] Fix | Delete
/***/ })
[862] Fix | Delete
/******/ ]);
[863] Fix | Delete
[864] Fix | Delete
[865] Fix | Delete
/***/ }),
[866] Fix | Delete
[867] Fix | Delete
/***/ 1880:
[868] Fix | Delete
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
[869] Fix | Delete
[870] Fix | Delete
"use strict";
[871] Fix | Delete
[872] Fix | Delete
[873] Fix | Delete
var reactIs = __webpack_require__(1178);
[874] Fix | Delete
[875] Fix | Delete
/**
[876] Fix | Delete
* Copyright 2015, Yahoo! Inc.
[877] Fix | Delete
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
[878] Fix | Delete
*/
[879] Fix | Delete
var REACT_STATICS = {
[880] Fix | Delete
childContextTypes: true,
[881] Fix | Delete
contextType: true,
[882] Fix | Delete
contextTypes: true,
[883] Fix | Delete
defaultProps: true,
[884] Fix | Delete
displayName: true,
[885] Fix | Delete
getDefaultProps: true,
[886] Fix | Delete
getDerivedStateFromError: true,
[887] Fix | Delete
getDerivedStateFromProps: true,
[888] Fix | Delete
mixins: true,
[889] Fix | Delete
propTypes: true,
[890] Fix | Delete
type: true
[891] Fix | Delete
};
[892] Fix | Delete
var KNOWN_STATICS = {
[893] Fix | Delete
name: true,
[894] Fix | Delete
length: true,
[895] Fix | Delete
prototype: true,
[896] Fix | Delete
caller: true,
[897] Fix | Delete
callee: true,
[898] Fix | Delete
arguments: true,
[899] Fix | Delete
arity: true
[900] Fix | Delete
};
[901] Fix | Delete
var FORWARD_REF_STATICS = {
[902] Fix | Delete
'$$typeof': true,
[903] Fix | Delete
render: true,
[904] Fix | Delete
defaultProps: true,
[905] Fix | Delete
displayName: true,
[906] Fix | Delete
propTypes: true
[907] Fix | Delete
};
[908] Fix | Delete
var MEMO_STATICS = {
[909] Fix | Delete
'$$typeof': true,
[910] Fix | Delete
compare: true,
[911] Fix | Delete
defaultProps: true,
[912] Fix | Delete
displayName: true,
[913] Fix | Delete
propTypes: true,
[914] Fix | Delete
type: true
[915] Fix | Delete
};
[916] Fix | Delete
var TYPE_STATICS = {};
[917] Fix | Delete
TYPE_STATICS[reactIs.ForwardRef] = FORWARD_REF_STATICS;
[918] Fix | Delete
TYPE_STATICS[reactIs.Memo] = MEMO_STATICS;
[919] Fix | Delete
[920] Fix | Delete
function getStatics(component) {
[921] Fix | Delete
// React v16.11 and below
[922] Fix | Delete
if (reactIs.isMemo(component)) {
[923] Fix | Delete
return MEMO_STATICS;
[924] Fix | Delete
} // React v16.12 and above
[925] Fix | Delete
[926] Fix | Delete
[927] Fix | Delete
return TYPE_STATICS[component['$$typeof']] || REACT_STATICS;
[928] Fix | Delete
}
[929] Fix | Delete
[930] Fix | Delete
var defineProperty = Object.defineProperty;
[931] Fix | Delete
var getOwnPropertyNames = Object.getOwnPropertyNames;
[932] Fix | Delete
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
[933] Fix | Delete
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
[934] Fix | Delete
var getPrototypeOf = Object.getPrototypeOf;
[935] Fix | Delete
var objectPrototype = Object.prototype;
[936] Fix | Delete
function hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {
[937] Fix | Delete
if (typeof sourceComponent !== 'string') {
[938] Fix | Delete
// don't hoist over string (html) components
[939] Fix | Delete
if (objectPrototype) {
[940] Fix | Delete
var inheritedComponent = getPrototypeOf(sourceComponent);
[941] Fix | Delete
[942] Fix | Delete
if (inheritedComponent && inheritedComponent !== objectPrototype) {
[943] Fix | Delete
hoistNonReactStatics(targetComponent, inheritedComponent, blacklist);
[944] Fix | Delete
}
[945] Fix | Delete
}
[946] Fix | Delete
[947] Fix | Delete
var keys = getOwnPropertyNames(sourceComponent);
[948] Fix | Delete
[949] Fix | Delete
if (getOwnPropertySymbols) {
[950] Fix | Delete
keys = keys.concat(getOwnPropertySymbols(sourceComponent));
[951] Fix | Delete
}
[952] Fix | Delete
[953] Fix | Delete
var targetStatics = getStatics(targetComponent);
[954] Fix | Delete
var sourceStatics = getStatics(sourceComponent);
[955] Fix | Delete
[956] Fix | Delete
for (var i = 0; i < keys.length; ++i) {
[957] Fix | Delete
var key = keys[i];
[958] Fix | Delete
[959] Fix | Delete
if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) {
[960] Fix | Delete
var descriptor = getOwnPropertyDescriptor(sourceComponent, key);
[961] Fix | Delete
[962] Fix | Delete
try {
[963] Fix | Delete
// Avoid failures from read-only properties
[964] Fix | Delete
defineProperty(targetComponent, key, descriptor);
[965] Fix | Delete
} catch (e) {}
[966] Fix | Delete
}
[967] Fix | Delete
}
[968] Fix | Delete
}
[969] Fix | Delete
[970] Fix | Delete
return targetComponent;
[971] Fix | Delete
}
[972] Fix | Delete
[973] Fix | Delete
module.exports = hoistNonReactStatics;
[974] Fix | Delete
[975] Fix | Delete
[976] Fix | Delete
/***/ }),
[977] Fix | Delete
[978] Fix | Delete
/***/ 2950:
[979] Fix | Delete
/***/ ((__unused_webpack_module, exports) => {
[980] Fix | Delete
[981] Fix | Delete
"use strict";
[982] Fix | Delete
/** @license React v16.13.1
[983] Fix | Delete
* react-is.production.min.js
[984] Fix | Delete
*
[985] Fix | Delete
* Copyright (c) Facebook, Inc. and its affiliates.
[986] Fix | Delete
*
[987] Fix | Delete
* This source code is licensed under the MIT license found in the
[988] Fix | Delete
* LICENSE file in the root directory of this source tree.
[989] Fix | Delete
*/
[990] Fix | Delete
[991] Fix | Delete
var b="function"===typeof Symbol&&Symbol.for,c=b?Symbol.for("react.element"):60103,d=b?Symbol.for("react.portal"):60106,e=b?Symbol.for("react.fragment"):60107,f=b?Symbol.for("react.strict_mode"):60108,g=b?Symbol.for("react.profiler"):60114,h=b?Symbol.for("react.provider"):60109,k=b?Symbol.for("react.context"):60110,l=b?Symbol.for("react.async_mode"):60111,m=b?Symbol.for("react.concurrent_mode"):60111,n=b?Symbol.for("react.forward_ref"):60112,p=b?Symbol.for("react.suspense"):60113,q=b?
[992] Fix | Delete
Symbol.for("react.suspense_list"):60120,r=b?Symbol.for("react.memo"):60115,t=b?Symbol.for("react.lazy"):60116,v=b?Symbol.for("react.block"):60121,w=b?Symbol.for("react.fundamental"):60117,x=b?Symbol.for("react.responder"):60118,y=b?Symbol.for("react.scope"):60119;
[993] Fix | Delete
function z(a){if("object"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}exports.AsyncMode=l;exports.ConcurrentMode=m;exports.ContextConsumer=k;exports.ContextProvider=h;exports.Element=c;exports.ForwardRef=n;exports.Fragment=e;exports.Lazy=t;exports.Memo=r;exports.Portal=d;
[994] Fix | Delete
exports.Profiler=g;exports.StrictMode=f;exports.Suspense=p;exports.isAsyncMode=function(a){return A(a)||z(a)===l};exports.isConcurrentMode=A;exports.isContextConsumer=function(a){return z(a)===k};exports.isContextProvider=function(a){return z(a)===h};exports.isElement=function(a){return"object"===typeof a&&null!==a&&a.$$typeof===c};exports.isForwardRef=function(a){return z(a)===n};exports.isFragment=function(a){return z(a)===e};exports.isLazy=function(a){return z(a)===t};
[995] Fix | Delete
exports.isMemo=function(a){return z(a)===r};exports.isPortal=function(a){return z(a)===d};exports.isProfiler=function(a){return z(a)===g};exports.isStrictMode=function(a){return z(a)===f};exports.isSuspense=function(a){return z(a)===p};
[996] Fix | Delete
exports.isValidElementType=function(a){return"string"===typeof a||"function"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||"object"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};exports.typeOf=z;
[997] Fix | Delete
[998] Fix | Delete
[999] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function