minor optimization to relativize helper
authorDan Allen <dan@opendevise.com>
Fri, 9 Feb 2018 22:09:48 +0000 (15:09 -0700)
committerDan Allen <dan@opendevise.com>
Fri, 9 Feb 2018 22:09:48 +0000 (15:09 -0700)
src/helpers/relativize.js

index 84615c9..f9788c0 100644 (file)
@@ -14,7 +14,7 @@ module.exports = (from, to) => {
   if (from === to) {
     return hash || (isDir(to) ? './' : path.basename(to))
   } else {
-    return path.relative(path.dirname(from + '.'), to) + (isDir(to) ? '/' : '') + hash
+    return path.relative(path.dirname(from + '.'), to) + (isDir(to) ? '/' + hash : hash)
   }
 }