Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/wwwroot/mifepriston.org/node_modules/postcss-convert-values/dist/lib/ |
Upload File : |
'use strict'; exports.__esModule = true; exports.default = function (number, unit, _ref) { var time = _ref.time, length = _ref.length, angle = _ref.angle; var value = dropLeadingZero(number) + (unit ? unit : ''); var converted = void 0; if (length !== false && unit in lengthConv) { converted = transform(number, unit, lengthConv); } if (time !== false && unit in timeConv) { converted = transform(number, unit, timeConv); } if (angle !== false && unit in angleConv) { converted = transform(number, unit, angleConv); } if (converted && converted.length < value.length) { value = converted; } return value; }; var lengthConv = { in: 96, px: 1, pt: 4 / 3, pc: 16 }; var timeConv = { s: 1000, ms: 1 }; var angleConv = { turn: 360, deg: 1 }; function dropLeadingZero(number) { var value = String(number); if (number % 1) { if (value[0] === '0') { return value.slice(1); } if (value[0] === '-' && value[1] === '0') { return '-' + value.slice(2); } } return value; } function transform(number, unit, conversion) { var one = void 0, base = void 0; var convertionUnits = Object.keys(conversion).filter(function (u) { if (conversion[u] === 1) { one = u; } return unit !== u; }); if (unit === one) { base = number / conversion[unit]; } else { base = number * conversion[unit]; } return convertionUnits.map(function (u) { return dropLeadingZero(base / conversion[u]) + u; }).reduce(function (a, b) { return a.length < b.length ? a : b; }); } module.exports = exports['default'];