UNPKG

probot

Version:

A framework for building GitHub Apps to automate and improve your workflow

8 lines 190 B
export const notFoundHandler = (_req, res) => { if (res.headersSent) { return false; } res.writeHead(404).end(); return true; }; //# sourceMappingURL=not-found.js.map