Skip to content

Commit bbedffa

Browse files
committed
module: simplify findPackageJSON implementation
PR-URL: #55543 Backport-PR-URL: #56494 Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Marco Ippolito <[email protected]>
1 parent 6d6cffa commit bbedffa

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed

lib/internal/modules/package_json_reader.js

+4-13
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const {
77
RegExpPrototypeExec,
88
StringPrototypeIndexOf,
99
StringPrototypeSlice,
10-
StringPrototypeStartsWith,
1110
} = primordials;
1211
const {
1312
fileURLToPath,
@@ -285,22 +284,14 @@ function findPackageJSON(specifier, base = 'data:') {
285284
validateString(specifier, 'specifier');
286285
}
287286

288-
let parentURL;
289-
if (isURL(base)) {
290-
parentURL = new URL(base);
291-
} else {
287+
let parentURL = base;
288+
if (!isURL(base)) {
292289
validateString(base, 'base');
293-
if (
294-
path.isAbsolute(base) ||
295-
(URLCanParse(base) && !StringPrototypeStartsWith(base, 'file:'))
296-
) {
297-
parentURL = pathToFileURL(path.toNamespacedPath(base));
298-
} else {
299-
parentURL = URL.parse(base) || pathToFileURL(base);
300-
}
290+
parentURL = path.isAbsolute(base) ? pathToFileURL(base) : new URL(base);
301291
}
302292

303293
if (specifier && specifier[0] !== '.' && specifier[0] !== '/' && !URLCanParse(specifier)) {
294+
// If `specifier` is a bare specifier.
304295
const { packageJSONPath } = getPackageJSONURL(specifier, parentURL);
305296
return packageJSONPath;
306297
}

0 commit comments

Comments
 (0)