UNPKG

ice.fo.utils

Version:

7 lines (6 loc) 177 B
module.exports = function createResponseCacheMiddleware ({ ttl }) { return function (req, res, next) { res.set('Cache-control', `public, max-age=${ttl}`) next() } }