Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
quiz1 /
node_modules /
autoprefixer /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
hacks
[ DIR ]
dr-xr-xr-x
at-rule.js
702
B
-rw-rw-rw-
autoprefixer.d.ts
2.39
KB
-rw-rw-rw-
autoprefixer.js
4.08
KB
-rw-rw-rw-
brackets.js
849
B
-rw-rw-rw-
browsers.js
1.73
KB
-rw-rw-rw-
declaration.js
3.97
KB
-rw-rw-rw-
info.js
3.09
KB
-rw-rw-rw-
old-selector.js
1.36
KB
-rw-rw-rw-
old-value.js
463
B
-rw-rw-rw-
prefixer.js
3.05
KB
-rw-rw-rw-
prefixes.js
12.79
KB
-rw-rw-rw-
processor.js
21.04
KB
-rw-rw-rw-
resolution.js
2.25
KB
-rw-rw-rw-
selector.js
3.15
KB
-rw-rw-rw-
supports.js
6.24
KB
-rw-rw-rw-
transition.js
8
KB
-rw-rw-rw-
utils.js
1.97
KB
-rw-rw-rw-
value.js
2.51
KB
-rw-rw-rw-
vendor.js
206
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : value.js
let Prefixer = require('./prefixer') let OldValue = require('./old-value') let vendor = require('./vendor') let utils = require('./utils') class Value extends Prefixer { /** * Clone decl for each prefixed values */ static save(prefixes, decl) { let prop = decl.prop let result = [] for (let prefix in decl._autoprefixerValues) { let value = decl._autoprefixerValues[prefix] if (value === decl.value) { continue } let item let propPrefix = vendor.prefix(prop) if (propPrefix === '-pie-') { continue } if (propPrefix === prefix) { item = decl.value = value result.push(item) continue } let prefixed = prefixes.prefixed(prop, prefix) let rule = decl.parent if (!rule.every(i => i.prop !== prefixed)) { result.push(item) continue } let trimmed = value.replace(/\s+/, ' ') let already = rule.some( i => i.prop === decl.prop && i.value.replace(/\s+/, ' ') === trimmed ) if (already) { result.push(item) continue } let cloned = this.clone(decl, { value }) item = decl.parent.insertBefore(decl, cloned) result.push(item) } return result } /** * Save values with next prefixed token */ add(decl, prefix) { if (!decl._autoprefixerValues) { decl._autoprefixerValues = {} } let value = decl._autoprefixerValues[prefix] || this.value(decl) let before do { before = value value = this.replace(value, prefix) if (value === false) return } while (value !== before) decl._autoprefixerValues[prefix] = value } /** * Is declaration need to be prefixed */ check(decl) { let value = decl.value if (!value.includes(this.name)) { return false } return !!value.match(this.regexp()) } /** * Return function to fast find prefixed value */ old(prefix) { return new OldValue(this.name, prefix + this.name) } /** * Lazy regexp loading */ regexp() { return this.regexpCache || (this.regexpCache = utils.regexp(this.name)) } /** * Add prefix to values in string */ replace(string, prefix) { return string.replace(this.regexp(), `$1${prefix}$2`) } /** * Get value with comments if it was not changed */ value(decl) { if (decl.raws.value && decl.raws.value.value === decl.value) { return decl.raws.value.raw } else { return decl.value } } } module.exports = Value
Close