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 : importsToResolve.js
"use strict"; const path = require("path"); const utils = require("loader-utils"); const matchModuleImport = /^~([^\/]+|@[^\/]+[\/][^\/]+)$/; /** * When libsass tries to resolve an import, it uses a special algorithm. * Since the sass-loader uses webpack to resolve the modules, we need to simulate that algorithm. This function * returns an array of import paths to try. The last entry in the array is always the original url * to enable straight-forward webpack.config aliases. * * @param {string} url * @returns {Array<string>} */ function importsToResolve(url) { const request = utils.urlToRequest(url); // Keep in mind: ext can also be something like '.datepicker' when the true extension is omitted and the filename contains a dot. // @see https://github.com/webpack-contrib/sass-loader/issues/167 const ext = path.extname(request); if (matchModuleImport.test(url)) { return [request, url]; } // libsass' import algorithm works like this: // In case there is a file extension... // - If the file is a CSS-file, do not include it all, but just link it via @import url(). // - The exact file name must match (no auto-resolving of '_'-modules). if (ext === ".css") { return []; } if (ext === ".scss" || ext === ".sass") { return [request, url]; } // In case there is no file extension... // - Prefer modules starting with '_'. // - File extension precedence: .scss, .sass, .css. const basename = path.basename(request); if (basename.charAt(0) === "_") { return [ `${ request }.scss`, `${ request }.sass`, `${ request }.css`, url ]; } const dirname = path.dirname(request); return [ `${ dirname }/_${ basename }.scss`, `${ dirname }/_${ basename }.sass`, `${ dirname }/_${ basename }.css`, `${ request }.scss`, `${ request }.sass`, `${ request }.css`, url ]; } module.exports = importsToResolve;
Close