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 /
amatya /
node_modules /
sass-loader /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
formatSassError.js
2.01
KB
-rw-r--r--
importsToResolve.js
1.96
KB
-rw-r--r--
loader.js
4.64
KB
-rw-r--r--
normalizeOptions.js
3.25
KB
-rw-r--r--
proxyCustomImporters.js
1.05
KB
-rw-r--r--
webpackImporter.js
2.33
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : proxyCustomImporters.js
"use strict"; /** * Creates new custom importers that use the given `resourcePath` if libsass calls the custom importer with `prev` * being 'stdin'. * * Why do we need this? We have to use the `data` option of node-sass in order to compile our sass because * the `resourcePath` might not be an actual file on disk. When using the `data` option, libsass uses the string * 'stdin' instead of a filename. * * We have to fix this behavior in order to provide a consistent experience to the webpack user. * * @param {function|Array<function>} importer * @param {string} resourcePath * @returns {Array<function>} */ function proxyCustomImporters(importer, resourcePath) { return [].concat(importer).map((importer) => { return function (url, prev, done) { return importer.apply( this, // eslint-disable-line no-invalid-this Array.from(arguments) .map((arg, i) => i === 1 && arg === "stdin" ? resourcePath : arg) ); }; }); } module.exports = proxyCustomImporters;
Close