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 : 18.218.60.55
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
resolve /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
dotdot
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
module_dir
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
node_path
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
pathfilter
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
precedence
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
resolver
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.eslintrc
48
B
-rw-r--r--
1985-10-26 08:15
core.js
2.63
KB
-rw-r--r--
1985-10-26 08:15
dotdot.js
799
B
-rw-r--r--
1985-10-26 08:15
faulty_basedir.js
352
B
-rw-r--r--
1985-10-26 08:15
filter.js
1004
B
-rw-r--r--
1985-10-26 08:15
filter_sync.js
769
B
-rw-r--r--
1985-10-26 08:15
mock.js
4.41
KB
-rw-r--r--
1985-10-26 08:15
mock_sync.js
1.59
KB
-rw-r--r--
1985-10-26 08:15
module_dir.js
1.52
KB
-rw-r--r--
1985-10-26 08:15
node-modules-paths.js
3.08
KB
-rw-r--r--
1985-10-26 08:15
node_path.js
1.34
KB
-rw-r--r--
1985-10-26 08:15
nonstring.js
182
B
-rw-r--r--
1985-10-26 08:15
pathfilter.js
2.2
KB
-rw-r--r--
1985-10-26 08:15
precedence.js
646
B
-rw-r--r--
1985-10-26 08:15
resolver.js
13.03
KB
-rw-r--r--
1985-10-26 08:15
resolver_sync.js
7.62
KB
-rw-r--r--
1985-10-26 08:15
subdirs.js
353
B
-rw-r--r--
1985-10-26 08:15
symlinks.js
1.83
KB
-rw-r--r--
1985-10-26 08:15
Save
Rename
var test = require('tape'); var path = require('path'); var parse = path.parse || require('path-parse'); var keys = require('object-keys'); var nodeModulesPaths = require('../lib/node-modules-paths'); var verifyDirs = function verifyDirs(t, start, dirs, moduleDirectories, paths) { var moduleDirs = [].concat(moduleDirectories || 'node_modules'); var foundModuleDirs = {}; var uniqueDirs = {}; var parsedDirs = {}; for (var i = 0; i < dirs.length; ++i) { var parsed = parse(dirs[i]); if (!foundModuleDirs[parsed.base]) { foundModuleDirs[parsed.base] = 0; } foundModuleDirs[parsed.base] += 1; parsedDirs[parsed.dir] = true; uniqueDirs[dirs[i]] = true; } t.equal(keys(parsedDirs).length >= start.split(path.sep).length, true, 'there are >= dirs than "start" has'); var foundModuleDirNames = keys(foundModuleDirs); t.deepEqual(foundModuleDirNames, moduleDirs.concat(paths || []), 'all desired module dirs were found'); t.equal(keys(uniqueDirs).length, dirs.length, 'all dirs provided were unique'); var counts = {}; for (var j = 0; j < foundModuleDirNames.length; ++j) { counts[foundModuleDirs[j]] = true; } t.equal(keys(counts).length, 1, 'all found module directories had the same count'); }; test('node-modules-paths', function (t) { t.test('no options', function (t) { var start = path.join(__dirname, 'resolver'); var dirs = nodeModulesPaths(start); verifyDirs(t, start, dirs); t.end(); }); t.test('empty options', function (t) { var start = path.join(__dirname, 'resolver'); var dirs = nodeModulesPaths(start, {}); verifyDirs(t, start, dirs); t.end(); }); t.test('with paths option', function (t) { var start = path.join(__dirname, 'resolver'); var paths = ['a', 'b']; var dirs = nodeModulesPaths(start, { paths: paths }); verifyDirs(t, start, dirs, null, paths); t.end(); }); t.test('with moduleDirectory option', function (t) { var start = path.join(__dirname, 'resolver'); var moduleDirectory = 'not node modules'; var dirs = nodeModulesPaths(start, { moduleDirectory: moduleDirectory }); verifyDirs(t, start, dirs, moduleDirectory); t.end(); }); t.test('with 1 moduleDirectory and paths options', function (t) { var start = path.join(__dirname, 'resolver'); var paths = ['a', 'b']; var moduleDirectory = 'not node modules'; var dirs = nodeModulesPaths(start, { paths: paths, moduleDirectory: moduleDirectory }); verifyDirs(t, start, dirs, moduleDirectory, paths); t.end(); }); t.test('with 1+ moduleDirectory and paths options', function (t) { var start = path.join(__dirname, 'resolver'); var paths = ['a', 'b']; var moduleDirectories = ['not node modules', 'other modules']; var dirs = nodeModulesPaths(start, { paths: paths, moduleDirectory: moduleDirectories }); verifyDirs(t, start, dirs, moduleDirectories, paths); t.end(); }); });