Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.73.229
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
cssnano /
dist /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
core.js
1.35
KB
-rw-rw-r--
2022-08-30 11:49
evenValues.js
179
B
-rw-rw-r--
2022-08-30 11:49
filterOptimiser.js
801
B
-rw-rw-r--
2022-08-30 11:49
functionOptimiser.js
1.27
KB
-rw-rw-r--
2022-08-30 11:49
getArguments.js
368
B
-rw-rw-r--
2022-08-30 11:49
getMatch.js
385
B
-rw-rw-r--
2022-08-30 11:49
normalizeString.js
6.49
KB
-rw-rw-r--
2022-08-30 11:49
normalizeUnicode.js
1.75
KB
-rw-rw-r--
2022-08-30 11:49
reduceBackgroundRepeat.js
2.87
KB
-rw-rw-r--
2022-08-30 11:49
reduceDisplayValues.js
1.97
KB
-rw-rw-r--
2022-08-30 11:49
reducePositions.js
3.87
KB
-rw-rw-r--
2022-08-30 11:49
reduceTimingFunctions.js
2.1
KB
-rw-rw-r--
2022-08-30 11:49
styleCache.js
587
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; exports.__esModule = true; var _postcss = require('postcss'); var _postcss2 = _interopRequireDefault(_postcss); var _postcssValueParser = require('postcss-value-parser'); var _postcssValueParser2 = _interopRequireDefault(_postcssValueParser); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function unicode(range) { var values = range.slice(2).split('-'); if (values.length < 2) { return range; } var left = values[0].split(''); var right = values[1].split(''); if (left.length !== right.length) { return range; } var questionCounter = 0; var merged = left.reduce(function (group, value, index) { if (group === false) { return false; } if (value === right[index] && !questionCounter) { return group + value; } if (value === '0' && right[index] === 'f') { questionCounter++; return group + '?'; } return false; }, 'u+'); /* * The maximum number of wildcard characters (?) for ranges is 5. */ if (merged && questionCounter < 6) { return merged; } return range; } exports.default = _postcss2.default.plugin('cssnano-normalize-unicode', function () { return function (css) { css.walkDecls(/^unicode-range$/i, function (node) { node.prop = 'unicode-range'; node.value = (0, _postcssValueParser2.default)(node.value).walk(function (child) { if (child.type === 'word') { child.value = unicode(child.value.toLowerCase()); } return false; }).toString(); }); }; }); module.exports = exports['default'];