UNPKG

nexi

Version:
10 lines (8 loc) 214 B
const createError = require('http-errors') const notFoundMiddleware = () => { const notFound = (req, res, next) => { return next(createError(404)) } return notFound } module.exports = notFoundMiddleware