%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/dordingu/public_html/hardkjarni/wp-content/plugins/gutenberg/build/experiments/
Upload File :
Create Path :
Current File : /home/dordingu/public_html/hardkjarni/wp-content/plugins/gutenberg/build/experiments/index.min.js.map

{"version":3,"file":"./build/experiments/index.min.js","mappings":"mBACA,IAAIA,EAAsB,CCA1BA,EAAwB,CAACC,EAASC,KACjC,IAAI,IAAIC,KAAOD,EACXF,EAAoBI,EAAEF,EAAYC,KAASH,EAAoBI,EAAEH,EAASE,IAC5EE,OAAOC,eAAeL,EAASE,EAAK,CAAEI,YAAY,EAAMC,IAAKN,EAAWC,IAE1E,ECNDH,EAAwB,CAACS,EAAKC,IAAUL,OAAOM,UAAUC,eAAeC,KAAKJ,EAAKC,GCClFV,EAAyBC,IACH,oBAAXa,QAA0BA,OAAOC,aAC1CV,OAAOC,eAAeL,EAASa,OAAOC,YAAa,CAAEC,MAAO,WAE7DX,OAAOC,eAAeL,EAAS,aAAc,CAAEe,OAAO,GAAO,G,4ECL9D,MAAMC,EAAiC,CACtC,kBACA,0BACA,2BACA,oBACA,uBACA,kBACA,uBACA,2BAGKC,EAAwB,CAAC,EAkBlBC,EAAmD,CAC/DC,EACAC,KAEA,IAAOJ,EAA+BK,SAAUD,GAC/C,MAAM,IAAIE,MACR,qDAAqDF,uTAOxD,GAAKA,KAAcH,EAClB,MAAM,IAAIK,MACR,qDAAqDF,mVAOxD,GAxBA,iHAwBKD,EACJ,MAAM,IAAIG,MACR,2XAWH,OAJAL,EAAuBG,GAAe,CACrCG,UAAW,CAAC,EACZC,KAAM,CAAC,GAED,CACNC,SAAYC,IACX,IAAM,MAAMxB,KAAOwB,EAClBT,EAAuBG,GAAaI,KAAMtB,GACzCwB,EAAaxB,GAEf,OAAOe,EAAuBG,GAAaG,SAA3C,EAEDI,OAAUJ,IACT,IAAM,MAAMK,KAAcxB,OAAOyB,OAAQZ,GACxC,GAAKW,EAAWL,YAAcA,EAC7B,OAAOK,EAAWJ,KAIpB,MAAM,IAAIF,MACT,kEADD,EAfF,G","sources":["webpack://wp/webpack/bootstrap","webpack://wp/webpack/runtime/define property getters","webpack://wp/webpack/runtime/hasOwnProperty shorthand","webpack://wp/webpack/runtime/make namespace object","webpack://wp/./packages/experiments/build-module/@wordpress/experiments/src/index.js"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","const CORE_MODULES_USING_EXPERIMENTS = [\n\t'@wordpress/data',\n\t'@wordpress/block-editor',\n\t'@wordpress/block-library',\n\t'@wordpress/blocks',\n\t'@wordpress/core-data',\n\t'@wordpress/date',\n\t'@wordpress/edit-site',\n\t'@wordpress/edit-widgets',\n];\n\nconst registeredExperiments = {};\n/*\n * Warning for theme and plugin developers.\n *\n * The use of experimental developer APIs is intended for use by WordPress Core\n * and the Gutenberg plugin exclusively.\n *\n * Dangerously opting in to using these APIs is NOT RECOMMENDED. Furthermore,\n * the WordPress Core philosophy to strive to maintain backward compatibility\n * for third-party developers DOES NOT APPLY to experimental APIs.\n *\n * THE CONSENT STRING FOR OPTING IN TO THESE APIS MAY CHANGE AT ANY TIME AND\n * WITHOUT NOTICE. THIS CHANGE WILL BREAK EXISTING THIRD-PARTY CODE. SUCH A\n * CHANGE MAY OCCUR IN EITHER A MAJOR OR MINOR RELEASE.\n */\nconst requiredConsent =\n\t'I know using unstable features means my plugin or theme will inevitably break on the next WordPress release.';\n\nexport const __dangerousOptInToUnstableAPIsOnlyForCoreModules = (\n\tconsent,\n\tmoduleName\n) => {\n\tif ( ! CORE_MODULES_USING_EXPERIMENTS.includes( moduleName ) ) {\n\t\tthrow new Error(\n\t\t\t`You tried to opt-in to unstable APIs as a module \"${ moduleName }\". ` +\n\t\t\t\t'This feature is only for JavaScript modules shipped with WordPress core. ' +\n\t\t\t\t'Please do not use it in plugins and themes as the unstable APIs will be removed ' +\n\t\t\t\t'without a warning. If you ignore this error and depend on unstable features, ' +\n\t\t\t\t'your product will inevitably break on one of the next WordPress releases.'\n\t\t);\n\t}\n\tif ( moduleName in registeredExperiments ) {\n\t\tthrow new Error(\n\t\t\t`You tried to opt-in to unstable APIs as a module \"${ moduleName }\" which is already registered. ` +\n\t\t\t\t'This feature is only for JavaScript modules shipped with WordPress core. ' +\n\t\t\t\t'Please do not use it in plugins and themes as the unstable APIs will be removed ' +\n\t\t\t\t'without a warning. If you ignore this error and depend on unstable features, ' +\n\t\t\t\t'your product will inevitably break on one of the next WordPress releases.'\n\t\t);\n\t}\n\tif ( consent !== requiredConsent ) {\n\t\tthrow new Error(\n\t\t\t`You tried to opt-in to unstable APIs without confirming you know the consequences. ` +\n\t\t\t\t'This feature is only for JavaScript modules shipped with WordPress core. ' +\n\t\t\t\t'Please do not use it in plugins and themes as the unstable APIs will removed ' +\n\t\t\t\t'without a warning. If you ignore this error and depend on unstable features, ' +\n\t\t\t\t'your product will inevitably break on the next WordPress release.'\n\t\t);\n\t}\n\tregisteredExperiments[ moduleName ] = {\n\t\taccessKey: {},\n\t\tapis: {},\n\t};\n\treturn {\n\t\tregister: ( experiments ) => {\n\t\t\tfor ( const key in experiments ) {\n\t\t\t\tregisteredExperiments[ moduleName ].apis[ key ] =\n\t\t\t\t\texperiments[ key ];\n\t\t\t}\n\t\t\treturn registeredExperiments[ moduleName ].accessKey;\n\t\t},\n\t\tunlock: ( accessKey ) => {\n\t\t\tfor ( const experiment of Object.values( registeredExperiments ) ) {\n\t\t\t\tif ( experiment.accessKey === accessKey ) {\n\t\t\t\t\treturn experiment.apis;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tthrow new Error(\n\t\t\t\t'There is no registered module matching the specified access key'\n\t\t\t);\n\t\t},\n\t};\n};\n"],"names":["__webpack_require__","exports","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","Symbol","toStringTag","value","CORE_MODULES_USING_EXPERIMENTS","registeredExperiments","__dangerousOptInToUnstableAPIsOnlyForCoreModules","consent","moduleName","includes","Error","accessKey","apis","register","experiments","unlock","experiment","values"],"sourceRoot":""}

Zerion Mini Shell 1.0