HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/epamokos.kaunokolegija.lt/wp-content/plugins/lifterlms/assets/js/llms-utils.js.map
{"version":3,"file":"js/llms-utils.js","mappings":";;;;;;;;;;;;;;;;;AAAsD;;;;;;;;;;;;;;;;ACAI;;AAE1D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAASA,eAAeA,CAAEE,GAAG,EAAG;EACtC,OAAQ,GAAGD,uEAAiB,CAAEC,GAAI,CAAG,GAAE;AACxC;;;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAASD,iBAAiBA,CAAEC,GAAG,EAAG;EACxC,OAAOA,GAAG,CAACC,QAAQ,CAAE,GAAI,CAAC,GAAGD,GAAG,CAACE,KAAK,CAAE,CAAC,EAAE,CAAC,CAAE,CAAC,GAAGF,GAAG;AACtD;;;;;;;;;;;;;;;;;;ACV6B;;;;;;;;;;;;;;;;ACAqB;;AAElD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAASG,WAAWA,CAAA,EAAG;EAC7B,MAAM;IAAEC,SAAS,EAAEC,GAAG,GAAG;EAAY,CAAC,GAAGC,MAAM,CAACC,IAAI,IAAI,CAAC,CAAC;EAC1D,OAAOR,8DAAiB,CAAEM,GAAI,CAAC;AAChC;;;;;;;;;;;;;;;;;;;;;UEhBA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;;ACNkD;;AAElD;AACA;AACA;AACA;AACA;AACAC,MAAM,CAACC,IAAI,GAAGD,MAAM,CAACC,IAAI,IAAI,CAAC,CAAC;AAC/BD,MAAM,CAACC,IAAI,CAACC,KAAK,GAAGA,gDAAK,C","sources":["webpack://lifterlms/./packages/utils/src/formatting/index.js","webpack://lifterlms/./packages/utils/src/formatting/trailing-slash-it.js","webpack://lifterlms/./packages/utils/src/formatting/untrailing-slash-it.js","webpack://lifterlms/./packages/utils/src/index.js","webpack://lifterlms/./packages/utils/src/url/get-admin-url.js","webpack://lifterlms/./packages/utils/src/url/index.js","webpack://lifterlms/webpack/bootstrap","webpack://lifterlms/webpack/runtime/define property getters","webpack://lifterlms/webpack/runtime/hasOwnProperty shorthand","webpack://lifterlms/webpack/runtime/make namespace object","webpack://lifterlms/./src/js/utils.js"],"sourcesContent":["export { trailingSlashIt } from './trailing-slash-it';\nexport { untrailingSlashIt } from './untrailing-slash-it';\n","import { untrailingSlashIt } from './untrailing-slash-it';\n\n/**\n * Adds a trailing forward slash to a given string.\n *\n * @since 1.0.0\n *\n * @param {string} str A string with or without a trailing forward slash.\n * @return {string} The original string with a trailing forward slash added.\n */\nexport function trailingSlashIt( str ) {\n\treturn `${ untrailingSlashIt( str ) }/`;\n}\n","/**\n * Remove trailing forward slash from a given string.\n *\n * @since 1.0.0\n *\n * @param {string} str A string with or without a trailing forward slash.\n * @return {string} The original string with the trailing forward slash removed.\n */\nexport function untrailingSlashIt( str ) {\n\treturn str.endsWith( '/' ) ? str.slice( 0, -1 ) : str;\n}\n","export * from './formatting';\nexport * from './url';\n","import { untrailingSlashIt } from '../formatting';\n\n/**\n * Retrieves the WordPress admin URL.\n *\n * This function relies on the presence of localized data from the LifterLMS plugin which is only\n * present on the WordPress admin panel. If used out of context a default partial path url, `/wp-admin`\n * will be returned.\n *\n * @since 1.0.0\n *\n * @return {string} The WP Admin URL.\n */\nexport function getAdminUrl() {\n\tconst { admin_url: url = '/wp-admin' } = window.llms || {};\n\treturn untrailingSlashIt( url );\n}\n","export { getAdminUrl } from './get-admin-url';\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\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};","import * as utils from '../../packages/utils/src';\n\n/**\n * Expose @lifterlms/utils via the global `window.llms` object.\n *\n * @since 6.0.0\n */\nwindow.llms = window.llms || {};\nwindow.llms.utils = utils;\n"],"names":["trailingSlashIt","untrailingSlashIt","str","endsWith","slice","getAdminUrl","admin_url","url","window","llms","utils"],"sourceRoot":""}