Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.147.67.34
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
sass-loader /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
formatSassError.js
2.01
KB
-rw-r--r--
2021-02-04 21:24
importsToResolve.js
2.61
KB
-rw-r--r--
2021-02-04 21:24
loader.js
3.28
KB
-rw-r--r--
2021-02-04 21:24
normalizeOptions.js
3.25
KB
-rw-r--r--
2021-02-04 21:24
proxyCustomImporters.js
1.05
KB
-rw-r--r--
2021-02-04 21:24
webpackImporter.js
2.39
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
"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;