Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
enhanced-resolve /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
util
[ DIR ]
drwxr-xr-x
AliasFieldPlugin.js
2.49
KB
-rw-r--r--
AliasPlugin.js
2.95
KB
-rw-r--r--
AppendPlugin.js
1.07
KB
-rw-r--r--
CachedInputFileSystem.js
12.56
KB
-rw-r--r--
CloneBasenamePlugin.js
1003
B
-rw-r--r--
ConditionalPlugin.js
1.64
KB
-rw-r--r--
DescriptionFilePlugin.js
2.53
KB
-rw-r--r--
DescriptionFileUtils.js
4.15
KB
-rw-r--r--
DirectoryExistsPlugin.js
1.66
KB
-rw-r--r--
ExportsFieldPlugin.js
4.25
KB
-rw-r--r--
FileExistsPlugin.js
1.53
KB
-rw-r--r--
ImportsFieldPlugin.js
4.57
KB
-rw-r--r--
JoinRequestPartPlugin.js
1.6
KB
-rw-r--r--
JoinRequestPlugin.js
1.02
KB
-rw-r--r--
LogInfoPlugin.js
1.38
KB
-rw-r--r--
MainFieldPlugin.js
2.05
KB
-rw-r--r--
ModulesInHierachicDirectoriesP...
2.06
KB
-rw-r--r--
ModulesInRootPlugin.js
1.03
KB
-rw-r--r--
NextPlugin.js
803
B
-rw-r--r--
ParsePlugin.js
2.19
KB
-rw-r--r--
PnpPlugin.js
2.76
KB
-rw-r--r--
Resolver.js
12.81
KB
-rw-r--r--
ResolverFactory.js
19.12
KB
-rw-r--r--
RestrictionsPlugin.js
1.64
KB
-rw-r--r--
ResultPlugin.js
831
B
-rw-r--r--
RootsPlugin.js
1.35
KB
-rw-r--r--
SelfReferencePlugin.js
1.93
KB
-rw-r--r--
SymlinkPlugin.js
2.24
KB
-rw-r--r--
SyncAsyncFileSystemDecorator.j...
2.3
KB
-rw-r--r--
TryNextPlugin.js
919
B
-rw-r--r--
UnsafeCachePlugin.js
1.81
KB
-rw-r--r--
UseFilePlugin.js
1.14
KB
-rw-r--r--
createInnerContext.js
733
B
-rw-r--r--
forEachBail.js
553
B
-rw-r--r--
getInnerRequest.js
823
B
-rw-r--r--
getPaths.js
911
B
-rw-r--r--
index.js
3.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ExportsFieldPlugin.js
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Ivan Kopeykin @vankop */ "use strict"; const path = require("path"); const DescriptionFileUtils = require("./DescriptionFileUtils"); const forEachBail = require("./forEachBail"); const { processExportsField } = require("./util/entrypoints"); const { parseIdentifier } = require("./util/identifier"); const { checkExportsFieldTarget } = require("./util/path"); /** @typedef {import("./Resolver")} Resolver */ /** @typedef {import("./Resolver").ResolveStepHook} ResolveStepHook */ /** @typedef {import("./util/entrypoints").ExportsField} ExportsField */ /** @typedef {import("./util/entrypoints").FieldProcessor} FieldProcessor */ module.exports = class ExportsFieldPlugin { /** * @param {string | ResolveStepHook} source source * @param {Set<string>} conditionNames condition names * @param {string | string[]} fieldNamePath name path * @param {string | ResolveStepHook} target target */ constructor(source, conditionNames, fieldNamePath, target) { this.source = source; this.target = target; this.conditionNames = conditionNames; this.fieldName = fieldNamePath; /** @type {WeakMap<any, FieldProcessor>} */ this.fieldProcessorCache = new WeakMap(); } /** * @param {Resolver} resolver the resolver * @returns {void} */ apply(resolver) { const target = resolver.ensureHook(this.target); resolver .getHook(this.source) .tapAsync("ExportsFieldPlugin", (request, resolveContext, callback) => { // When there is no description file, abort if (!request.descriptionFilePath) return callback(); if ( // When the description file is inherited from parent, abort // (There is no description file inside of this package) request.relativePath !== "." || request.request === undefined ) return callback(); const remainingRequest = request.query || request.fragment ? (request.request === "." ? "./" : request.request) + request.query + request.fragment : request.request; /** @type {ExportsField|null} */ const exportsField = DescriptionFileUtils.getField( request.descriptionFileData, this.fieldName ); if (!exportsField) return callback(); if (request.directory) { return callback( new Error( `Resolving to directories is not possible with the exports field (request was ${remainingRequest}/)` ) ); } let paths; try { // We attach the cache to the description file instead of the exportsField value // because we use a WeakMap and the exportsField could be a string too. // Description file is always an object when exports field can be accessed. let fieldProcessor = this.fieldProcessorCache.get( request.descriptionFileData ); if (fieldProcessor === undefined) { fieldProcessor = processExportsField(exportsField); this.fieldProcessorCache.set( request.descriptionFileData, fieldProcessor ); } paths = fieldProcessor(remainingRequest, this.conditionNames); } catch (err) { if (resolveContext.log) { resolveContext.log( `Exports field in ${request.descriptionFilePath} can't be processed: ${err}` ); } return callback(err); } if (paths.length === 0) { return callback( new Error( `Package path ${remainingRequest} is not exported from package ${request.descriptionFileRoot} (see exports field in ${request.descriptionFilePath})` ) ); } forEachBail( paths, (p, callback) => { const parsedIdentifier = parseIdentifier(p); if (!parsedIdentifier) return callback(); const [relativePath, query, fragment] = parsedIdentifier; const error = checkExportsFieldTarget(relativePath); if (error) { return callback(error); } const obj = { ...request, request: undefined, path: path.join( /** @type {string} */ (request.descriptionFileRoot), relativePath ), relativePath, query, fragment }; resolver.doResolve( target, obj, "using exports field: " + p, resolveContext, callback ); }, (err, result) => callback(err, result || null) ); }); } };
Close