{"version":3,"file":"commons-app-microtask.js.570bd49bbb60cac730f6.js","mappings":"+GAAA,IAiBIA,EAAOC,EAAMC,EAAMC,EAAQC,EAAQC,EAAMC,EAASC,EAjBlDC,EAAS,EAAQ,MACjBC,EAAO,EAAQ,MACfC,EAA2B,UAC3BC,EAAY,WACZC,EAAS,EAAQ,MACjBC,EAAgB,EAAQ,MACxBC,EAAkB,EAAQ,MAC1BC,EAAU,EAAQ,MAElBC,EAAmBR,EAAOQ,kBAAoBR,EAAOS,uBACrDC,EAAWV,EAAOU,SAClBC,EAAUX,EAAOW,QACjBC,EAAUZ,EAAOY,QAEjBC,EAA2BX,EAAyBF,EAAQ,kBAC5Dc,EAAiBD,GAA4BA,EAAyBE,MAKrED,IACHtB,EAAQ,WACN,IAAIwB,EAAQC,EAEZ,IADIV,IAAYS,EAASL,EAAQO,SAASF,EAAOG,OAC1C1B,GAAM,CACXwB,EAAKxB,EAAKwB,GACVxB,EAAOA,EAAK2B,KACZ,IACEH,GAKF,CAJE,MAAOI,GAGP,MAFI5B,EAAME,IACLD,OAAO4B,EACND,CACR,CACF,CAAE3B,OAAO4B,EACLN,GAAQA,EAAOO,OACrB,EAIKnB,GAAWG,GAAYD,IAAmBE,IAAoBE,GAQvDL,GAAiBO,GAAWA,EAAQY,UAE9C1B,EAAUc,EAAQY,aAAQF,IAElBG,YAAcb,EACtBb,EAAOE,EAAKH,EAAQC,KAAMD,GAC1BH,EAAS,WACPI,EAAKP,EACP,GAESe,EACTZ,EAAS,WACPgB,EAAQe,SAASlC,EACnB,GASAW,EAAYF,EAAKE,EAAWH,GAC5BL,EAAS,WACPQ,EAAUX,EACZ,IAhCAI,GAAS,EACTC,EAAOa,EAASiB,eAAe,IAC/B,IAAInB,EAAiBhB,GAAOoC,QAAQ/B,EAAM,CAAEgC,eAAe,IAC3DlC,EAAS,WACPE,EAAKiC,KAAOlC,GAAUA,CACxB,IA+BJmC,EAAOC,QAAUlB,GAAkB,SAAUG,GAC3C,IAAIgB,EAAO,CAAEhB,GAAIA,EAAIG,UAAME,GACvB5B,IAAMA,EAAK0B,KAAOa,GACjBxC,IACHA,EAAOwC,EACPtC,KACAD,EAAOuC,CACX,C","sources":["webpack://grfanclub-webview/./node_modules/core-js/internals/microtask.js"],"sourcesContent":["var global = require('../internals/global');\nvar bind = require('../internals/function-bind-context');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar macrotask = require('../internals/task').set;\nvar IS_IOS = require('../internals/engine-is-ios');\nvar IS_IOS_PEBBLE = require('../internals/engine-is-ios-pebble');\nvar IS_WEBOS_WEBKIT = require('../internals/engine-is-webos-webkit');\nvar IS_NODE = require('../internals/engine-is-node');\n\nvar MutationObserver = global.MutationObserver || global.WebKitMutationObserver;\nvar document = global.document;\nvar process = global.process;\nvar Promise = global.Promise;\n// Node.js 11 shows ExperimentalWarning on getting `queueMicrotask`\nvar queueMicrotaskDescriptor = getOwnPropertyDescriptor(global, 'queueMicrotask');\nvar queueMicrotask = queueMicrotaskDescriptor && queueMicrotaskDescriptor.value;\n\nvar flush, head, last, notify, toggle, node, promise, then;\n\n// modern engines have queueMicrotask method\nif (!queueMicrotask) {\n flush = function () {\n var parent, fn;\n if (IS_NODE && (parent = process.domain)) parent.exit();\n while (head) {\n fn = head.fn;\n head = head.next;\n try {\n fn();\n } catch (error) {\n if (head) notify();\n else last = undefined;\n throw error;\n }\n } last = undefined;\n if (parent) parent.enter();\n };\n\n // browsers with MutationObserver, except iOS - https://github.com/zloirock/core-js/issues/339\n // also except WebOS Webkit https://github.com/zloirock/core-js/issues/898\n if (!IS_IOS && !IS_NODE && !IS_WEBOS_WEBKIT && MutationObserver && document) {\n toggle = true;\n node = document.createTextNode('');\n new MutationObserver(flush).observe(node, { characterData: true });\n notify = function () {\n node.data = toggle = !toggle;\n };\n // environments with maybe non-completely correct, but existent Promise\n } else if (!IS_IOS_PEBBLE && Promise && Promise.resolve) {\n // Promise.resolve without an argument throws an error in LG WebOS 2\n promise = Promise.resolve(undefined);\n // workaround of WebKit ~ iOS Safari 10.1 bug\n promise.constructor = Promise;\n then = bind(promise.then, promise);\n notify = function () {\n then(flush);\n };\n // Node.js without promises\n } else if (IS_NODE) {\n notify = function () {\n process.nextTick(flush);\n };\n // for other environments - macrotask based on:\n // - setImmediate\n // - MessageChannel\n // - window.postMessage\n // - onreadystatechange\n // - setTimeout\n } else {\n // strange IE + webpack dev server bug - use .bind(global)\n macrotask = bind(macrotask, global);\n notify = function () {\n macrotask(flush);\n };\n }\n}\n\nmodule.exports = queueMicrotask || function (fn) {\n var task = { fn: fn, next: undefined };\n if (last) last.next = task;\n if (!head) {\n head = task;\n notify();\n } last = task;\n};\n"],"names":["flush","head","last","notify","toggle","node","promise","then","global","bind","getOwnPropertyDescriptor","macrotask","IS_IOS","IS_IOS_PEBBLE","IS_WEBOS_WEBKIT","IS_NODE","MutationObserver","WebKitMutationObserver","document","process","Promise","queueMicrotaskDescriptor","queueMicrotask","value","parent","fn","domain","exit","next","error","undefined","enter","resolve","constructor","nextTick","createTextNode","observe","characterData","data","module","exports","task"],"sourceRoot":""}