Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
autoprefixer /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
hacks
[ DIR ]
drwxr-xr-x
2026-06-24 16:16
at-rule.js
702
B
-rw-r--r--
2026-06-24 16:16
autoprefixer.d.ts
2.39
KB
-rw-r--r--
2026-06-24 16:16
autoprefixer.js
4.08
KB
-rw-r--r--
2026-06-24 16:16
brackets.js
849
B
-rw-r--r--
2026-06-24 16:16
browsers.js
1.73
KB
-rw-r--r--
2026-06-24 16:16
declaration.js
3.97
KB
-rw-r--r--
2026-06-24 16:16
info.js
3.09
KB
-rw-r--r--
2026-06-24 16:16
old-selector.js
1.36
KB
-rw-r--r--
2026-06-24 16:16
old-value.js
463
B
-rw-r--r--
2026-06-24 16:16
prefixer.js
3.05
KB
-rw-r--r--
2026-06-24 16:16
prefixes.js
12.79
KB
-rw-r--r--
2026-06-24 16:16
processor.js
21.03
KB
-rw-r--r--
2026-06-24 16:16
resolution.js
2.25
KB
-rw-r--r--
2026-06-24 16:16
selector.js
3.15
KB
-rw-r--r--
2026-06-24 16:16
supports.js
6.28
KB
-rw-r--r--
2026-06-24 16:16
transition.js
7.98
KB
-rw-r--r--
2026-06-24 16:16
utils.js
1.97
KB
-rw-r--r--
2026-06-24 16:16
value.js
2.51
KB
-rw-r--r--
2026-06-24 16:16
vendor.js
206
B
-rw-r--r--
2026-06-24 16:16
Save
Rename
let { list } = require('postcss') let Browsers = require('./browsers') let OldSelector = require('./old-selector') let Prefixer = require('./prefixer') let utils = require('./utils') class Selector extends Prefixer { constructor(name, prefixes, all) { super(name, prefixes, all) this.regexpCache = new Map() } /** * Clone and add prefixes for at-rule */ add(rule, prefix) { let prefixeds = this.prefixeds(rule) if (this.already(rule, prefixeds, prefix)) { return } let cloned = this.clone(rule, { selector: prefixeds[this.name][prefix] }) rule.parent.insertBefore(rule, cloned) } /** * Is rule already prefixed before */ already(rule, prefixeds, prefix) { let index = rule.parent.index(rule) - 1 while (index >= 0) { let before = rule.parent.nodes[index] if (before.type !== 'rule') { return false } let some = false for (let key in prefixeds[this.name]) { let prefixed = prefixeds[this.name][key] if (before.selector === prefixed) { if (prefix === key) { return true } else { some = true break } } } if (!some) { return false } index -= 1 } return false } /** * Is rule selectors need to be prefixed */ check(rule) { if (rule.selector.includes(this.name)) { return !!rule.selector.match(this.regexp()) } return false } /** * Return function to fast find prefixed selector */ old(prefix) { return new OldSelector(this, prefix) } /** * All possible prefixes */ possible() { return Browsers.prefixes() } /** * Return prefixed version of selector */ prefixed(prefix) { return this.name.replace(/^(\W*)/, `$1${prefix}`) } /** * Return all possible selector prefixes */ prefixeds(rule) { if (rule._autoprefixerPrefixeds) { if (rule._autoprefixerPrefixeds[this.name]) { return rule._autoprefixerPrefixeds } } else { rule._autoprefixerPrefixeds = {} } let prefixeds = {} if (rule.selector.includes(',')) { let ruleParts = list.comma(rule.selector) let toProcess = ruleParts.filter(el => el.includes(this.name)) for (let prefix of this.possible()) { prefixeds[prefix] = toProcess .map(el => this.replace(el, prefix)) .join(', ') } } else { for (let prefix of this.possible()) { prefixeds[prefix] = this.replace(rule.selector, prefix) } } rule._autoprefixerPrefixeds[this.name] = prefixeds return rule._autoprefixerPrefixeds } /** * Lazy loadRegExp for name */ regexp(prefix) { if (!this.regexpCache.has(prefix)) { let name = prefix ? this.prefixed(prefix) : this.name this.regexpCache.set( prefix, new RegExp(`(^|[^:"'=])${utils.escapeRegexp(name)}`, 'gi') ) } return this.regexpCache.get(prefix) } /** * Replace selectors by prefixed one */ replace(selector, prefix) { return selector.replace(this.regexp(), `$1${this.prefixed(prefix)}`) } } module.exports = Selector