{"version":3,"file":"commons-app-shams.js.8ad9b98abf003b93d55b.js","mappings":"uHAGAA,EAAOC,QAAU,WAChB,GAAsB,oBAAXC,QAAiE,oBAAjCC,OAAOC,sBAAwC,OAAO,EACjG,GAA+B,kBAApBF,OAAOG,SAAyB,OAAO,EAElD,IAAIC,EAAM,CAAC,EACPC,EAAML,OAAO,QACbM,EAASL,OAAOI,GACpB,GAAmB,kBAARA,EAAoB,OAAO,EAEtC,GAA4C,oBAAxCJ,OAAOM,UAAUC,SAASC,KAAKJ,GAA8B,OAAO,EACxE,GAA+C,oBAA3CJ,OAAOM,UAAUC,SAASC,KAAKH,GAAiC,OAAO,EAY3E,IAAKD,KADLD,EAAIC,GADS,GAEDD,EAAO,OAAO,EAC1B,GAA2B,oBAAhBH,OAAOS,MAAmD,IAA5BT,OAAOS,KAAKN,GAAKO,OAAgB,OAAO,EAEjF,GAA0C,oBAA/BV,OAAOW,qBAAiF,IAA3CX,OAAOW,oBAAoBR,GAAKO,OAAgB,OAAO,EAE/G,IAAIE,EAAOZ,OAAOC,sBAAsBE,GACxC,GAAoB,IAAhBS,EAAKF,QAAgBE,EAAK,KAAOR,EAAO,OAAO,EAEnD,IAAKJ,OAAOM,UAAUO,qBAAqBL,KAAKL,EAAKC,GAAQ,OAAO,EAEpE,GAA+C,oBAApCJ,OAAOc,yBAAyC,CAC1D,IAAIC,EAAaf,OAAOc,yBAAyBX,EAAKC,GACtD,GAdY,KAcRW,EAAWC,QAA8C,IAA1BD,EAAWE,WAAuB,OAAO,CAC7E,CAEA,OAAO,CACR,C,mBCtCApB,EAAOC,QAAU,WAChB,GAAsB,oBAAXC,QAAiE,oBAAjCC,OAAOC,sBAAwC,OAAO,EACjG,GAA+B,kBAApBF,OAAOG,SAAyB,OAAO,EAElD,IAAIC,EAAM,CAAC,EACPC,EAAML,OAAO,QACbM,EAASL,OAAOI,GACpB,GAAmB,kBAARA,EAAoB,OAAO,EAEtC,GAA4C,oBAAxCJ,OAAOM,UAAUC,SAASC,KAAKJ,GAA8B,OAAO,EACxE,GAA+C,oBAA3CJ,OAAOM,UAAUC,SAASC,KAAKH,GAAiC,OAAO,EAY3E,IAAKD,KADLD,EAAIC,GADS,GAEDD,EAAO,OAAO,EAC1B,GAA2B,oBAAhBH,OAAOS,MAAmD,IAA5BT,OAAOS,KAAKN,GAAKO,OAAgB,OAAO,EAEjF,GAA0C,oBAA/BV,OAAOW,qBAAiF,IAA3CX,OAAOW,oBAAoBR,GAAKO,OAAgB,OAAO,EAE/G,IAAIE,EAAOZ,OAAOC,sBAAsBE,GACxC,GAAoB,IAAhBS,EAAKF,QAAgBE,EAAK,KAAOR,EAAO,OAAO,EAEnD,IAAKJ,OAAOM,UAAUO,qBAAqBL,KAAKL,EAAKC,GAAQ,OAAO,EAEpE,GAA+C,oBAApCJ,OAAOc,yBAAyC,CAC1D,IAAIC,EAAaf,OAAOc,yBAAyBX,EAAKC,GACtD,GAdY,KAcRW,EAAWC,QAA8C,IAA1BD,EAAWE,WAAuB,OAAO,CAC7E,CAEA,OAAO,CACR,C","sources":["webpack://grfanclub-webview/./node_modules/get-intrinsic/node_modules/has-symbols/shams.js","webpack://grfanclub-webview/./node_modules/side-channel/node_modules/has-symbols/shams.js"],"sourcesContent":["'use strict';\n\n/* eslint complexity: [2, 18], max-statements: [2, 33] */\nmodule.exports = function hasSymbols() {\n\tif (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }\n\tif (typeof Symbol.iterator === 'symbol') { return true; }\n\n\tvar obj = {};\n\tvar sym = Symbol('test');\n\tvar symObj = Object(sym);\n\tif (typeof sym === 'string') { return false; }\n\n\tif (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }\n\tif (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; }\n\n\t// temp disabled per https://github.com/ljharb/object.assign/issues/17\n\t// if (sym instanceof Symbol) { return false; }\n\t// temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4\n\t// if (!(symObj instanceof Symbol)) { return false; }\n\n\t// if (typeof Symbol.prototype.toString !== 'function') { return false; }\n\t// if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }\n\n\tvar symVal = 42;\n\tobj[sym] = symVal;\n\tfor (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax\n\tif (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }\n\n\tif (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }\n\n\tvar syms = Object.getOwnPropertySymbols(obj);\n\tif (syms.length !== 1 || syms[0] !== sym) { return false; }\n\n\tif (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }\n\n\tif (typeof Object.getOwnPropertyDescriptor === 'function') {\n\t\tvar descriptor = Object.getOwnPropertyDescriptor(obj, sym);\n\t\tif (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }\n\t}\n\n\treturn true;\n};\n","'use strict';\n\n/* eslint complexity: [2, 18], max-statements: [2, 33] */\nmodule.exports = function hasSymbols() {\n\tif (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }\n\tif (typeof Symbol.iterator === 'symbol') { return true; }\n\n\tvar obj = {};\n\tvar sym = Symbol('test');\n\tvar symObj = Object(sym);\n\tif (typeof sym === 'string') { return false; }\n\n\tif (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }\n\tif (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; }\n\n\t// temp disabled per https://github.com/ljharb/object.assign/issues/17\n\t// if (sym instanceof Symbol) { return false; }\n\t// temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4\n\t// if (!(symObj instanceof Symbol)) { return false; }\n\n\t// if (typeof Symbol.prototype.toString !== 'function') { return false; }\n\t// if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }\n\n\tvar symVal = 42;\n\tobj[sym] = symVal;\n\tfor (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax\n\tif (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }\n\n\tif (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }\n\n\tvar syms = Object.getOwnPropertySymbols(obj);\n\tif (syms.length !== 1 || syms[0] !== sym) { return false; }\n\n\tif (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }\n\n\tif (typeof Object.getOwnPropertyDescriptor === 'function') {\n\t\tvar descriptor = Object.getOwnPropertyDescriptor(obj, sym);\n\t\tif (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }\n\t}\n\n\treturn true;\n};\n"],"names":["module","exports","Symbol","Object","getOwnPropertySymbols","iterator","obj","sym","symObj","prototype","toString","call","keys","length","getOwnPropertyNames","syms","propertyIsEnumerable","getOwnPropertyDescriptor","descriptor","value","enumerable"],"sourceRoot":""}