@@ -236,9 +236,15 @@ const encodedSepRegEx = /%2F|%5C/i;
236
236
*/
237
237
function finalizeResolution ( resolved , base , preserveSymlinks ) {
238
238
if ( RegExpPrototypeExec ( encodedSepRegEx , resolved . pathname ) !== null ) {
239
+ let basePath ;
240
+ try {
241
+ basePath = fileURLToPath ( base ) ;
242
+ } catch {
243
+ basePath = base ;
244
+ }
239
245
throw new ERR_INVALID_MODULE_SPECIFIER (
240
246
resolved . pathname , 'must not include encoded "/" or "\\" characters' ,
241
- fileURLToPath ( base ) ) ;
247
+ basePath ) ;
242
248
}
243
249
244
250
let path ;
@@ -256,14 +262,26 @@ function finalizeResolution(resolved, base, preserveSymlinks) {
256
262
257
263
// Check for stats.isDirectory()
258
264
if ( stats === 1 ) {
259
- throw new ERR_UNSUPPORTED_DIR_IMPORT ( path , fileURLToPath ( base ) , String ( resolved ) ) ;
265
+ let basePath ;
266
+ try {
267
+ basePath = fileURLToPath ( base ) ;
268
+ } catch {
269
+ basePath = base ;
270
+ }
271
+ throw new ERR_UNSUPPORTED_DIR_IMPORT ( path , basePath , String ( resolved ) ) ;
260
272
} else if ( stats !== 0 ) {
261
273
// Check for !stats.isFile()
262
274
if ( process . env . WATCH_REPORT_DEPENDENCIES && process . send ) {
263
275
process . send ( { 'watch:require' : [ path || resolved . pathname ] } ) ;
264
276
}
277
+ let basePath ;
278
+ try {
279
+ basePath = fileURLToPath ( base ) ;
280
+ } catch {
281
+ basePath = base ;
282
+ }
265
283
throw new ERR_MODULE_NOT_FOUND (
266
- path || resolved . pathname , base && fileURLToPath ( base ) , resolved ) ;
284
+ path || resolved . pathname , basePath , resolved ) ;
267
285
}
268
286
269
287
if ( ! preserveSymlinks ) {
0 commit comments