Browse Source

path: assert path.join() arguments equally

Re-use `assertPath()` when asserting path argument types in `join()`
as throughout the rest of the `path` module.

This also ensures the same error message generated for posix as for
win32.

PR-URL: https://github.com/nodejs/io.js/pull/2159
Reviewed-By: Roman Reiss <me@silverwind.io>
v4.0.0-rc
Phillip Johnsen 9 years ago
committed by Roman Reiss
parent
commit
2ba84606a6
  1. 4
      lib/path.js

4
lib/path.js

@ -477,9 +477,7 @@ posix.join = function() {
var path = '';
for (var i = 0; i < arguments.length; i++) {
var segment = arguments[i];
if (typeof segment !== 'string') {
throw new TypeError('Arguments to path.join must be strings');
}
assertPath(segment);
if (segment) {
if (!path) {
path += segment;

Loading…
Cancel
Save