Не могу понять почему не проходят проверки, хотя в консоль все выводится корректно как бы я не изменял configString
import {getFormattedDate} from "./functions.js"
let configString = ':date :method :url'
export const logger = () => {
return (req, res, next) => {
let result = '';
configString.includes(':date') ? (result += (getFormattedDate() + ' ')) : result = result;
configString.includes(':method') ? (result += (' ' + req.method)) : result = result;
configString.includes(':url') ? (result += (' ' + req.url)) : result = result;
console.log(result);
next();
}
}