Skip to content

Commit 329be5c

Browse files
bpaserotargos
authored andcommitted
path: use the correct name in validateString
The parameter was renamed from `ext` to `suffix` but not in the `validateString` call. PR-URL: #53669 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent c0b4c82 commit 329be5c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

‎lib/path.js‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ const win32 = {
776776
*/
777777
basename(path,suffix){
778778
if(suffix!==undefined)
779-
validateString(suffix,'ext');
779+
validateString(suffix,'suffix');
780780
validateString(path,'path');
781781
letstart=0;
782782
letend=-1;
@@ -1336,7 +1336,7 @@ const posix = {
13361336
*/
13371337
basename(path,suffix){
13381338
if(suffix!==undefined)
1339-
validateString(suffix,'ext');
1339+
validateString(suffix,'suffix');
13401340
validateString(path,'path');
13411341

13421342
letstart=0;

0 commit comments

Comments
 (0)