forked from svrjs/svrjs
Lint out the codebase
This commit is contained in:
parent
9fa194b33d
commit
ce2a73dbd3
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ module.exports = (legacyMod) => {
|
||||||
let ext = req.parsedURL.pathname.match(/[^/]\.([^.]+)$/);
|
let ext = req.parsedURL.pathname.match(/[^/]\.([^.]+)$/);
|
||||||
if (!ext) ext = "";
|
if (!ext) ext = "";
|
||||||
else ext = ext[1].toLowerCase();
|
else ext = ext[1].toLowerCase();
|
||||||
|
|
||||||
// Function to parse incoming POST data from the request
|
// Function to parse incoming POST data from the request
|
||||||
const parsePostData = (options, callback) => {
|
const parsePostData = (options, callback) => {
|
||||||
// If the request method is not POST, return a 405 Method Not Allowed error
|
// If the request method is not POST, return a 405 Method Not Allowed error
|
||||||
|
|
Reference in a new issue