{"version":3,"file":"commons-app-check-correctness-of-iteration.js.ab7062444d578cc26dfd.js","mappings":"+GAAA,IAEIA,EAFkB,EAAQ,KAEfC,CAAgB,YAC3BC,GAAe,EAEnB,IACE,IAAIC,EAAS,EACTC,EAAqB,CACvBC,KAAM,WACJ,MAAO,CAAEC,OAAQH,IACnB,EACA,OAAU,WACRD,GAAe,CACjB,GAEFE,EAAmBJ,GAAY,WAC7B,OAAOO,IACT,EAEAC,MAAMC,KAAKL,GAAoB,WAAc,MAAM,CAAG,GAC1B,CAA5B,MAAOM,GAAqB,CAE9BC,EAAOC,QAAU,SAAUC,EAAMC,GAC/B,IAAKA,IAAiBZ,EAAc,OAAO,EAC3C,IAAIa,GAAoB,EACxB,IACE,IAAIC,EAAS,CAAC,EACdA,EAAOhB,GAAY,WACjB,MAAO,CACLK,KAAM,WACJ,MAAO,CAAEC,KAAMS,GAAoB,EACrC,EAEJ,EACAF,EAAKG,EACuB,CAA5B,MAAON,GAAqB,CAC9B,OAAOK,CACT,C","sources":["webpack://grfanclub-webview/./node_modules/core-js/internals/check-correctness-of-iteration.js"],"sourcesContent":["var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var called = 0;\n var iteratorWithReturn = {\n next: function () {\n return { done: !!called++ };\n },\n 'return': function () {\n SAFE_CLOSING = true;\n }\n };\n iteratorWithReturn[ITERATOR] = function () {\n return this;\n };\n // eslint-disable-next-line es-x/no-array-from, no-throw-literal -- required for testing\n Array.from(iteratorWithReturn, function () { throw 2; });\n} catch (error) { /* empty */ }\n\nmodule.exports = function (exec, SKIP_CLOSING) {\n if (!SKIP_CLOSING && !SAFE_CLOSING) return false;\n var ITERATION_SUPPORT = false;\n try {\n var object = {};\n object[ITERATOR] = function () {\n return {\n next: function () {\n return { done: ITERATION_SUPPORT = true };\n }\n };\n };\n exec(object);\n } catch (error) { /* empty */ }\n return ITERATION_SUPPORT;\n};\n"],"names":["ITERATOR","wellKnownSymbol","SAFE_CLOSING","called","iteratorWithReturn","next","done","this","Array","from","error","module","exports","exec","SKIP_CLOSING","ITERATION_SUPPORT","object"],"sourceRoot":""}