Skip to content

Commit 8de78e4

Browse files
committed
path: reduce type checking on some methods
a465840 added strict type checking for the methods in the path module. However, dirname(), basename(), and extname() actually had some undocumented uses in the wild. This commit loosens the type checking on those methods. Fixes: #1215 PR-URL: #1216 Reviewed-By: Rod Vagg <[email protected]>
1 parent 3b9eab9 commit 8de78e4

File tree

2 files changed

+6
-13
lines changed

2 files changed

+6
-13
lines changed

lib/path.js

-10
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,6 @@ win32._makeLong = function(path) {
302302

303303

304304
win32.dirname = function(path) {
305-
assertPath(path);
306-
307305
var result = win32SplitPath(path),
308306
root = result[0],
309307
dir = result[1];
@@ -323,8 +321,6 @@ win32.dirname = function(path) {
323321

324322

325323
win32.basename = function(path, ext) {
326-
assertPath(path);
327-
328324
if (ext !== undefined && typeof ext !== 'string')
329325
throw new TypeError('ext must be a string');
330326

@@ -338,7 +334,6 @@ win32.basename = function(path, ext) {
338334

339335

340336
win32.extname = function(path) {
341-
assertPath(path);
342337
return win32SplitPath(path)[3];
343338
};
344339

@@ -536,8 +531,6 @@ posix._makeLong = function(path) {
536531

537532

538533
posix.dirname = function(path) {
539-
assertPath(path);
540-
541534
var result = posixSplitPath(path),
542535
root = result[0],
543536
dir = result[1];
@@ -557,8 +550,6 @@ posix.dirname = function(path) {
557550

558551

559552
posix.basename = function(path, ext) {
560-
assertPath(path);
561-
562553
if (ext !== undefined && typeof ext !== 'string')
563554
throw new TypeError('ext must be a string');
564555

@@ -572,7 +563,6 @@ posix.basename = function(path, ext) {
572563

573564

574565
posix.extname = function(path) {
575-
assertPath(path);
576566
return posixSplitPath(path)[3];
577567
};
578568

test/parallel/test-path.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -270,13 +270,16 @@ typeErrorTests.forEach(function(test) {
270270
fail(path.resolve, test);
271271
fail(path.normalize, test);
272272
fail(path.isAbsolute, test);
273-
fail(path.dirname, test);
274273
fail(path.relative, test, 'foo');
275274
fail(path.relative, 'foo', test);
276-
fail(path.basename, test);
277-
fail(path.extname, test);
278275
fail(path.parse, test);
279276

277+
// These methods should throw a TypeError, but do not for backwards
278+
// compatibility. Uncommenting these lines in the future should be a goal.
279+
// fail(path.dirname, test);
280+
// fail(path.basename, test);
281+
// fail(path.extname, test);
282+
280283
// undefined is a valid value as the second argument to basename
281284
if (test !== undefined) {
282285
fail(path.basename, 'foo', test);

0 commit comments

Comments
 (0)