From ce2a73dbd38cd29ed2b0d3d03b607047226da72c Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Wed, 28 Aug 2024 21:46:20 +0200 Subject: [PATCH] Lint out the codebase --- src/utils/legacyModWrapper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/legacyModWrapper.js b/src/utils/legacyModWrapper.js index 69030fa..2ce6504 100644 --- a/src/utils/legacyModWrapper.js +++ b/src/utils/legacyModWrapper.js @@ -14,7 +14,7 @@ module.exports = (legacyMod) => { let ext = req.parsedURL.pathname.match(/[^/]\.([^.]+)$/); if (!ext) ext = ""; else ext = ext[1].toLowerCase(); - + // Function to parse incoming POST data from the request const parsePostData = (options, callback) => { // If the request method is not POST, return a 405 Method Not Allowed error