From 19eae703f42e8853ef03b035ecc80fcdad76e294 Mon Sep 17 00:00:00 2001 From: Ambrose Chua Date: Wed, 16 Feb 2022 19:33:13 +0800 Subject: [PATCH] style: Format code --- assets/index.js | 55 +++++++++++++++++++++++++------------------------ index.js | 16 +++++++------- 2 files changed, 37 insertions(+), 34 deletions(-) diff --git a/assets/index.js b/assets/index.js index 5eb3ef0..f5bd1de 100644 --- a/assets/index.js +++ b/assets/index.js @@ -1,31 +1,32 @@ const assets = [ - { - path: 'bootstrap', - modulePath: 'bootstrap/dist', - }, - { - path: 'jquery', - modulePath: 'jquery/dist', - }, - { - path: 'octicons', - modulePath: '@primer/octicons/build', - }, - { - path: 'filesize', - modulePath: 'filesize/lib', - }, { - path: 'xterm', - modulePath: 'xterm', - }, { - path: 'xterm-addon-attach', - modulePath: 'xterm-addon-attach', - }, { - path: 'xterm-addon-fit', - modulePath: 'xterm-addon-fit', - } + { + path: "bootstrap", + modulePath: "bootstrap/dist", + }, + { + path: "jquery", + modulePath: "jquery/dist", + }, + { + path: "octicons", + modulePath: "@primer/octicons/build", + }, + { + path: "filesize", + modulePath: "filesize/lib", + }, + { + path: "xterm", + modulePath: "xterm", + }, + { + path: "xterm-addon-attach", + modulePath: "xterm-addon-attach", + }, + { + path: "xterm-addon-fit", + modulePath: "xterm-addon-fit", + }, ]; - module.exports = assets; - diff --git a/index.js b/index.js index c0e5076..ddf630b 100755 --- a/index.js +++ b/index.js @@ -73,26 +73,28 @@ app.set("view engine", "handlebars"); app.use("/@assets", express.static(path.join(__dirname, "assets"))); // init assets -assets.forEach(asset => { +assets.forEach((asset) => { const { path: url, modulePath } = asset; app.use( `/@assets/${url}`, express.static(path.join(__dirname, `node_modules/${modulePath}`)) ); -}) +}); app.use( session({ secret: process.env.SESSION_KEY || "meowmeow", resave: false, - saveUninitialized: false + saveUninitialized: false, }) ); app.use(flash()); app.use(busboy()); -app.use(express.urlencoded({ - extended: false -})); +app.use( + express.urlencoded({ + extended: false, + }) +); // AUTH const KEY = process.env.KEY @@ -385,7 +387,7 @@ app.get("/*@download", (req, res) => { let files = null; try { files = JSON.parse(req.query.files); - } catch (e) { } + } catch (e) {} if (!files || !files.map) { req.flash("error", "No files selected."); res.redirect("back");