mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
path: indicate index of wrong resolve() parameter
PR-URL: https://github.com/nodejs/node/pull/47660 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
This commit is contained in:
@@ -168,7 +168,7 @@ const win32 = {
|
||||
let path;
|
||||
if (i >= 0) {
|
||||
path = args[i];
|
||||
validateString(path, 'path');
|
||||
validateString(path, `paths[${i}]`);
|
||||
|
||||
// Skip empty entries
|
||||
if (path.length === 0) {
|
||||
@@ -1098,8 +1098,7 @@ const posix = {
|
||||
|
||||
for (let i = args.length - 1; i >= -1 && !resolvedAbsolute; i--) {
|
||||
const path = i >= 0 ? args[i] : posixCwd();
|
||||
|
||||
validateString(path, 'path');
|
||||
validateString(path, `paths[${i}]`);
|
||||
|
||||
// Skip empty entries
|
||||
if (path.length === 0) {
|
||||
|
||||
Reference in New Issue
Block a user