fix(mellow) convertPath: add join

This commit is contained in:
coderaiser 2014-06-22 12:41:01 -04:00
parent 3de0d5e2b0
commit 982d95a0fd

View file

@ -48,7 +48,10 @@
if (isWin && path !== '/') {
volume = path[1];
path = path.split('').slice(2);
path = path.split('')
.slice(2)
.join('');
path = volume + ':' + path;
}