![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/html/libs/absol-full/dist/js/ |
Upload File : |
/*** module: node_modules/absol/src/JSX/attribute.js ***/ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.parseStyleAttr = parseStyleAttr; exports.parseClassAttr = parseClassAttr; exports.parseMeasureValue = parseMeasureValue; Object.defineProperty(exports, "computeMeasureExpression", { enumerable: true, get: function () { return _CSSParser.computeMeasureExpression; } }); var _CSSParser = require("./CSSParser"); /** * * @param {String} text * @returns {Object} */ function parseStyleAttr(text) { return text.split(';').map(function (line) { var parts = line.split(':'); if (parts.length < 2) return null; var key = parts.shift().trim(); var value = parts.join(':').trim(); if (key.length == 0 || value.length == 0) return null; return [key, value]; }).filter(function (it) { return it != null; }).reduce(function (ac, cr) { ac[cr[0]] = cr[1]; return ac; }, {}); } /** * * @param {String} text * @returns {Array<String>} */ function parseClassAttr(text) { return text.trim().split(/\s+/); } /** * * @param mValue * @returns {{unit: null, value: string}|{unit: string, value: number}|null} */ function parseMeasureValue(mValue) { if (mValue === 'auto') return { unit: null, value: 'auto' }; if (mValue === 'match_parent') return { unit: null, value: 'match_parent' }; var value = NaN; var unit = null; var matched; if (typeof mValue === "number") { value = mValue; unit = 'px'; } else if (typeof mValue === "string") { matched = mValue.match(/([+-]?([0-9]*[.])?[0-9]+([eE][+-]?[0-9]+)?)(px|%|vw|vh|em|rem|pt)?/i); if (matched) { value = parseFloat(matched[1]); unit = matched[4]; } } if (isNaN(value)) return null; unit = unit || 'px'; return { value: value, unit: unit }; }