Skip to content

Commit f99761d

Browse files
committed
path: use the correct name in validateString
The parameter was renamed from `ext` to `suffix` but not in the `validateString` call.
1 parent 6671f7e commit f99761d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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
let start = 0;
782782
let end = -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
let start = 0;

0 commit comments

Comments
 (0)