diff --git a/lib/index.js b/lib/index.js index affe7c0..29f95d1 100644 --- a/lib/index.js +++ b/lib/index.js @@ -137,7 +137,7 @@ export default class Now extends EventEmitter { function toRelative (path, base) { const fullBase = /\/$/.test(base) ? base + '/' : base; - const relative path.substr(fullBase.length); + const relative = path.substr(fullBase.length); if (relative.startsWith('/')) return relative.substr(1); return relative; }