UNPKG

bot18

Version:

A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f

7 lines 243 B
module.exports = function container (get) { return function notfound (req, res, next) { if (res.renderStatus) res.renderStatus(404) else if (res.send) res.send(404) else next(new Error('notfound requires expres or render')) } }