{"version":3,"file":"commons-app-object-define-property.js.9419faa6f21deeea574b.js","mappings":"+GAAA,IAAIA,EAAc,EAAQ,MACtBC,EAAiB,EAAQ,MACzBC,EAA0B,EAAQ,MAClCC,EAAW,EAAQ,MACnBC,EAAgB,EAAQ,MAExBC,EAAaC,UAEbC,EAAkBC,OAAOC,eAEzBC,EAA4BF,OAAOG,yBACnCC,EAAa,aACbC,EAAe,eACfC,EAAW,WAIfC,EAAQC,EAAIhB,EAAcE,EAA0B,SAAwBe,EAAGC,EAAGC,GAIhF,GAHAhB,EAASc,GACTC,EAAId,EAAcc,GAClBf,EAASgB,GACQ,oBAANF,GAA0B,cAANC,GAAqB,UAAWC,GAAcL,KAAYK,IAAeA,EAAmB,SAAG,CAC5H,IAAIC,EAAUV,EAA0BO,EAAGC,GACvCE,GAAWA,EAAgB,WAC7BH,EAAEC,GAAKC,EAAWE,MAClBF,EAAa,CACXG,aAAcT,KAAgBM,EAAaA,EAAuB,aAAIC,EAAoB,aAC1FG,WAAYX,KAAcO,EAAaA,EAAqB,WAAIC,EAAkB,WAClFI,UAAU,GAGhB,CAAE,OAAOjB,EAAgBU,EAAGC,EAAGC,EACjC,EAAIZ,EAAkB,SAAwBU,EAAGC,EAAGC,GAIlD,GAHAhB,EAASc,GACTC,EAAId,EAAcc,GAClBf,EAASgB,GACLlB,EAAgB,IAClB,OAAOM,EAAgBU,EAAGC,EAAGC,EACD,CAA5B,MAAOM,GAAqB,CAC9B,GAAI,QAASN,GAAc,QAASA,EAAY,MAAMd,EAAW,2BAEjE,MADI,UAAWc,IAAYF,EAAEC,GAAKC,EAAWE,OACtCJ,CACT,C","sources":["webpack://grfanclub-webview/./node_modules/core-js/internals/object-define-property.js"],"sourcesContent":["var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar V8_PROTOTYPE_DEFINE_BUG = require('../internals/v8-prototype-define-bug');\nvar anObject = require('../internals/an-object');\nvar toPropertyKey = require('../internals/to-property-key');\n\nvar $TypeError = TypeError;\n// eslint-disable-next-line es-x/no-object-defineproperty -- safe\nvar $defineProperty = Object.defineProperty;\n// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\nvar ENUMERABLE = 'enumerable';\nvar CONFIGURABLE = 'configurable';\nvar WRITABLE = 'writable';\n\n// `Object.defineProperty` method\n// https://tc39.es/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPropertyKey(P);\n anObject(Attributes);\n if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {\n var current = $getOwnPropertyDescriptor(O, P);\n if (current && current[WRITABLE]) {\n O[P] = Attributes.value;\n Attributes = {\n configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],\n enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],\n writable: false\n };\n }\n } return $defineProperty(O, P, Attributes);\n} : $defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPropertyKey(P);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return $defineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw $TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n"],"names":["DESCRIPTORS","IE8_DOM_DEFINE","V8_PROTOTYPE_DEFINE_BUG","anObject","toPropertyKey","$TypeError","TypeError","$defineProperty","Object","defineProperty","$getOwnPropertyDescriptor","getOwnPropertyDescriptor","ENUMERABLE","CONFIGURABLE","WRITABLE","exports","f","O","P","Attributes","current","value","configurable","enumerable","writable","error"],"sourceRoot":""}