diff --git a/index.js b/index.js index 21c1453..389adff 100755 --- a/index.js +++ b/index.js @@ -156,7 +156,7 @@ app.use((req, res, next) => { function relative(...paths) { const finalPath = paths.reduce((a, b) => path.join(a, b), process.cwd()); if (path.relative(process.cwd(), finalPath).startsWith("..")) { - throw new Error("Failed to resolve path outside of the working directory") + throw new Error("Failed to resolve path outside of the working directory"); } return finalPath; }