BohemiaInteractive/bi-service

View on GitHub
lib/middleware/routeNotFound.js

Summary

Maintainability
A
0 mins
Test Coverage
const RouteNotFoundError = require('../error/routeNotFoundError.js');

module.exports = function (req, res, next) {
    if (!res.headersSent) {
        return next(new RouteNotFoundError())
    }
};