antongolub/npm-registry-firewall

View on GitHub
src/main/js/mwares/not-found.js

Summary

Maintainability
A
0 mins
Test Coverage
D
60%
import {httpError, NOT_FOUND} from '../http/index.js'

export const notFound = async (req, res, next) => {
  next(httpError(NOT_FOUND))
}