{"version":3,"file":"commons-app-iterators-core.js.150631cc2a32060bf2bb.js","mappings":"4HACA,IAcIA,EAAmBC,EAAmCC,EAdtDC,EAAQ,EAAQ,MAChBC,EAAa,EAAQ,KACrBC,EAAW,EAAQ,KACnBC,EAAS,EAAQ,IACjBC,EAAiB,EAAQ,MACzBC,EAAgB,EAAQ,MACxBC,EAAkB,EAAQ,MAC1BC,EAAU,EAAQ,MAElBC,EAAWF,EAAgB,YAC3BG,GAAyB,EAOzB,GAAGC,OAGC,SAFNX,EAAgB,GAAGW,SAIjBZ,EAAoCM,EAAeA,EAAeL,OACxBY,OAAOC,YAAWf,EAAoBC,GAHlDW,GAAyB,IAO7BP,EAASL,IAAsBG,GAAM,WACjE,IAAIa,EAAO,CAAC,EAEZ,OAAOhB,EAAkBW,GAAUM,KAAKD,KAAUA,CACpD,IAE4BhB,EAAoB,CAAC,EACxCU,IAASV,EAAoBM,EAAON,IAIxCI,EAAWJ,EAAkBW,KAChCH,EAAcR,EAAmBW,GAAU,WACzC,OAAOO,IACT,IAGFC,EAAOC,QAAU,CACfpB,kBAAmBA,EACnBY,uBAAwBA,E","sources":["webpack://grfanclub-webview/./node_modules/core-js/internals/iterators-core.js"],"sourcesContent":["'use strict';\nvar fails = require('../internals/fails');\nvar isCallable = require('../internals/is-callable');\nvar isObject = require('../internals/is-object');\nvar create = require('../internals/object-create');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar defineBuiltIn = require('../internals/define-built-in');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar BUGGY_SAFARI_ITERATORS = false;\n\n// `%IteratorPrototype%` object\n// https://tc39.es/ecma262/#sec-%iteratorprototype%-object\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\n\n/* eslint-disable es-x/no-array-prototype-keys -- safe */\nif ([].keys) {\n arrayIterator = [].keys();\n // Safari 8 has buggy iterators w/o `next`\n if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;\n else {\n PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\n if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\n }\n}\n\nvar NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype) || fails(function () {\n var test = {};\n // FF44- legacy iterators case\n return IteratorPrototype[ITERATOR].call(test) !== test;\n});\n\nif (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};\nelse if (IS_PURE) IteratorPrototype = create(IteratorPrototype);\n\n// `%IteratorPrototype%[@@iterator]()` method\n// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator\nif (!isCallable(IteratorPrototype[ITERATOR])) {\n defineBuiltIn(IteratorPrototype, ITERATOR, function () {\n return this;\n });\n}\n\nmodule.exports = {\n IteratorPrototype: IteratorPrototype,\n BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS\n};\n"],"names":["IteratorPrototype","PrototypeOfArrayIteratorPrototype","arrayIterator","fails","isCallable","isObject","create","getPrototypeOf","defineBuiltIn","wellKnownSymbol","IS_PURE","ITERATOR","BUGGY_SAFARI_ITERATORS","keys","Object","prototype","test","call","this","module","exports"],"sourceRoot":""}