'use strict';

const dnsPrefetch = require('../../config/dns-prefetch');

module.exports = () => {
    return (req, res, next) => {
        Object.assign(res.locals, {
            dnsPrefetch: dnsPrefetch
        });

        next();
    };
};