1
0
Fork 0

style: Format code

pull/20/head
Ambrose Chua 2021-11-16 22:13:04 +08:00
parent 71d2368ca4
commit 249344bd03
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}