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/cssnano/dist/lib/ |
Upload File : |
'use strict'; exports.__esModule = true; var _postcss = require('postcss'); var _postcssValueParser = require('postcss-value-parser'); var _postcssValueParser2 = _interopRequireDefault(_postcssValueParser); var _evenValues = require('./evenValues'); var _evenValues2 = _interopRequireDefault(_evenValues); var _getMatch = require('./getMatch'); var _getMatch2 = _interopRequireDefault(_getMatch); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var keywords = [['ease', [0.25, 0.1, 0.25, 1]], ['linear', [0, 0, 1, 1]], ['ease-in', [0.42, 0, 1, 1]], ['ease-out', [0, 0, 0.58, 1]], ['ease-in-out', [0.42, 0, 0.58, 1]]]; var getValue = function getValue(node) { return parseFloat(node.value); }; var getMatch = (0, _getMatch2.default)(keywords); function reduce(node) { if (node.type !== 'function') { return false; } if (node.value === 'steps') { // Don't bother checking the step-end case as it has the same length // as steps(1) if (getValue(node.nodes[0]) === 1 && node.nodes[2] && node.nodes[2].value === 'start') { node.type = 'word'; node.value = 'step-start'; delete node.nodes; return; } // The end case is actually the browser default, so it isn't required. if (node.nodes[2] && node.nodes[2].value === 'end') { node.nodes = [node.nodes[0]]; return; } return false; } if (node.value === 'cubic-bezier') { var match = getMatch(node.nodes.filter(_evenValues2.default).map(getValue)); if (match.length) { node.type = 'word'; node.value = match[0][0]; delete node.nodes; return; } } } exports.default = (0, _postcss.plugin)('cssnano-reduce-timing-functions', function () { return function (css) { css.walkDecls(/(animation|transition)(-timing-function|$)/, function (decl) { decl.value = (0, _postcssValueParser2.default)(decl.value).walk(reduce).toString(); }); }; }); module.exports = exports['default'];