Showing with 1 addition and 1 deletion.
  1. +1 −1 lib/path.js
@@ -206,7 +206,7 @@ if (isWindows) {
exports.isAbsolute = function(path) {
var result = splitDeviceRe.exec(path),
device = result[1] || '',
isUnc = device && device.charAt(1) !== ':';
isUnc = !!device && device.charAt(1) !== ':';
// UNC paths are always absolute
return !!result[2] || isUnc;
};