Skip to content

Commit c19746a

Browse files
authored
path - use the correct name in validateString
1 parent 6671f7e commit c19746a

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
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)