Skip to content

Commit 267cd7f

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 8b35f0e commit 267cd7f

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
@@ -775,7 +775,7 @@ const win32 = {
775775
*/
776776
basename(path,suffix){
777777
if(suffix!==undefined)
778-
validateString(suffix,'ext');
778+
validateString(suffix,'suffix');
779779
validateString(path,'path');
780780
letstart=0;
781781
letend=-1;
@@ -1335,7 +1335,7 @@ const posix = {
13351335
*/
13361336
basename(path,suffix){
13371337
if(suffix!==undefined)
1338-
validateString(suffix,'ext');
1338+
validateString(suffix,'suffix');
13391339
validateString(path,'path');
13401340

13411341
letstart=0;

0 commit comments

Comments
 (0)