Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
rechoir /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-xr-x
2022-04-21 14:29
LICENSE
1.16
KB
-rw-r--r--
2022-04-21 14:26
README.md
3.53
KB
-rw-r--r--
2022-04-21 14:26
index.js
1.45
KB
-rw-r--r--
2022-04-21 14:26
package.json
1.1
KB
-rw-r--r--
2022-04-21 14:26
Save
Rename
var path = require('path'); var extension = require('./lib/extension'); var normalize = require('./lib/normalize'); var register = require('./lib/register'); exports.prepare = function(extensions, filepath, cwd, nothrow) { var config, usedExtension, err, option, attempt, error; var attempts = []; var onlyErrors = true; var exts = extension(filepath); if (exts) { exts.some(function(ext) { usedExtension = ext; config = normalize(extensions[ext]); return !!config; }); } if (Object.keys(require.extensions).indexOf(usedExtension) !== -1) { return true; } if (!config) { if (nothrow) { return; } throw new Error('No module loader found for "' + usedExtension + '".'); } if (!cwd) { cwd = path.dirname(path.resolve(filepath)); } if (!Array.isArray(config)) { config = [config]; } for (var i in config) { option = config[i]; attempt = register(cwd, option.module, option.register); error = (attempt instanceof Error) ? attempt : null; if (error) { attempt = null; } attempts.push({ moduleName: option.module, module: attempt, error: error, }); if (!error) { onlyErrors = false; break; } } if (onlyErrors) { err = new Error('Unable to use specified module loaders for "' + usedExtension + '".'); err.failures = attempts; if (nothrow) { return err; } throw err; } return attempts; };