all files / blackbird/modules/middleware/ favicon.js

100% Statements 3/3
75% Branches 3/4
100% Functions 0/0
100% Lines 2/2
1 2 3 4   
/* eslint no-confusing-arrow: off */
module.exports = (app, response) =>
    (conn) => conn.pathname === "/favicon.ico" ? response || 404 : conn.run(app);